This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author batterystaple456
Recipients batterystaple456
Date 2018-11-15.21:09:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542316183.46.0.788709270274.issue35260@psf.upfronthosting.co.za>
In-reply-to
Content
File a.py:

------------------------------------
print("foo", end='bar') # ParseError
------------------------------------

I think the error is caused by arguments in the Python 3 print() function (e.g. end, sep) that are not ignored by 2to3, and (possibly) treated like Python 2 code.

Console stuff:

---------------------------------------------------
$ pip install 2to3
Requirement already satisfied: 2to3 in .\python37\lib\site-packages (1.0)

$ 2to3 .\a.py
...
RefactoringTool: Can't parse .\a.py: ParseError: bad input: type=22, value='=', context=('', (1, 16))
...
---------------------------------------------------
History
Date User Action Args
2018-11-15 21:09:43batterystaple456setrecipients: + batterystaple456
2018-11-15 21:09:43batterystaple456setmessageid: <1542316183.46.0.788709270274.issue35260@psf.upfronthosting.co.za>
2018-11-15 21:09:43batterystaple456linkissue35260 messages
2018-11-15 21:09:43batterystaple456create