Skip to content

Commit

Permalink
Try to pick up patterns in what allows what
Browse files Browse the repository at this point in the history
  • Loading branch information
A5rocks authored Jun 12, 2024
1 parent 460a1ce commit b3f76b1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/trio/_tests/test_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,13 @@ def lookup_symbol(symbol: str) -> dict[str, str]:
# being missing

if sys.version_info >= (3, 13):
print(class_, missing)
missing.remove("__firstlineno__")
missing.remove("__static_attributes__")
try:
missing.remove("__firstlineno__")
missing.remove("__static_attributes__")
except:
print(f"FAILED: {class_}; {static_names}")
else:
print(f"SUCCESS: {class_}")

if (
tool == "jedi"
Expand Down

0 comments on commit b3f76b1

Please sign in to comment.