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
Migrated issue, originally created by Jimmy Mabey (jmabey)
The RedisBackend uses the u"" syntax for Unicode strings, which was reintroduced in Python 3.3, so a SyntaxError is raised when used in Python 3.2 (and probably older 3.x versions as well).
RedisBackend
u""
SyntaxError
It's on this line: https://bitbucket.org/zzzeek/dogpile.cache/src/d3c7df59a0f695a13a213e0503c66878233561a6/dogpile/cache/backends/redis.py?at=master#cl-108
The text was updated successfully, but these errors were encountered:
Michael Bayer (zzzeek) wrote:
a short pull request, or just upgrade to 3.3 as you probably should, whichever is easier.... thanks !
Sorry, something went wrong.
Jimmy Mabey (jmabey) wrote:
Cool, I will send you a pull request, probably tomorrow. Stuck with using 3.2 for now, unfortunately.
f8108da
Changes by Michael Bayer (zzzeek):
No branches or pull requests
Migrated issue, originally created by Jimmy Mabey (jmabey)
The
RedisBackend
uses theu""
syntax for Unicode strings, which was reintroduced in Python 3.3, so aSyntaxError
is raised when used in Python 3.2 (and probably older 3.x versions as well).It's on this line: https://bitbucket.org/zzzeek/dogpile.cache/src/d3c7df59a0f695a13a213e0503c66878233561a6/dogpile/cache/backends/redis.py?at=master#cl-108
The text was updated successfully, but these errors were encountered: