Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 2.3 support in pyparser.py #90

Closed
sqlalchemy-bot opened this issue Sep 10, 2008 · 2 comments
Closed

Python 2.3 support in pyparser.py #90

sqlalchemy-bot opened this issue Sep 10, 2008 · 2 comments
Labels
bug Something isn't working lexer low priority

Comments

@sqlalchemy-bot
Copy link

Migrated issue, originally created by Anonymous

Add something like this to pyparser.py to support Python 2.3:

try:
set()
except NameError:
from sets import Set as set

@sqlalchemy-bot
Copy link
Author

Philip Jenvey (@pjenvey) wrote:

fixed in 24376b0, thanks!

@sqlalchemy-bot
Copy link
Author

Changes by Philip Jenvey (@pjenvey):

  • changed status to closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working lexer low priority
Projects
None yet
Development

No branches or pull requests

1 participant