##// END OF EJS Templates
Misc fix for Python 3.13 testing (unicode range and skip tests) (#14278)...
Misc fix for Python 3.13 testing (unicode range and skip tests) (#14278) Update unicode range for python 3.13, and skip jedi test while in alpha as there are no grammar available.

File last commit:

r22618:12e05563
r28562:90276e81 merge
Show More
bad_all.py
14 lines | 206 B | text/x-python | PythonLexer
"""Module with bad __all__
To test https://github.com/ipython/ipython/issues/9678
"""
def evil():
pass
def puppies():
pass
__all__ = [evil, # Bad
'puppies', # Good
]