Skip to content
This repository has been archived by the owner on Jul 22, 2020. It is now read-only.

wrong handling of multiple unicode literals #9

Closed
ThomasWaldmann opened this issue May 18, 2013 · 1 comment
Closed

wrong handling of multiple unicode literals #9

ThomasWaldmann opened this issue May 18, 2013 · 1 comment

Comments

@ThomasWaldmann
Copy link

if one has:

foo(u'.........'
    u'.........')

it gets converted to:

foo(six.u('........')
    six.u('........'))

that obviously does not work, better would be:

foo(six.u('.........'
          '.........'))
takluyver pushed a commit to takluyver/python-modernize that referenced this issue Aug 11, 2014
…readme

Add build status notification to README and convert to Markdown.
@daira
Copy link
Collaborator

daira commented Aug 13, 2014

Moved to PyCQA/modernize#26

@daira daira closed this as completed Aug 13, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants