We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A module beginning with a line like these::
# coding: utf-8 # encoding: utf-8
(the last one as in django-mezzanine) or a script beginning like this::
#!/usr/bin/env python
is currently converted by futurize --stage2 into this::
futurize --stage2
from __future__ import unicode_literals # encoding: utf-8
or this::
from __future__ import unicode_literals #!/usr/bin/env python
This is broken.
The text was updated successfully, but these errors were encountered:
Fixed in v0.12.
Sorry, something went wrong.
Add (failing) test for whether futurize displaces PEP 263 source enco…
ea484c1
…ding comments (issues #97 and #10)
Fix and add more tests of futurize with encoding comments (issues #97 …
abb191f
…and #10)
edschofield
No branches or pull requests
A module beginning with a line like these::
(the last one as in django-mezzanine) or a script beginning like this::
is currently converted by
futurize --stage2
into this::or this::
This is broken.
The text was updated successfully, but these errors were encountered: