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.

classification
Title: test_pep277 fails
Type: Stage:
Components: Tests Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: JosephArmbruster, christian.heimes
Priority: normal Keywords:

Created on 2007-12-20 14:30 by JosephArmbruster, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
testpep277.patch JosephArmbruster, 2007-12-20 14:30
Messages (5)
msg58876 - (view) Author: Joseph Armbruster (JosephArmbruster) Date: 2007-12-20 14:30
test_pep277 failed on one of my windows boxes.  It looks as if an import
unicode is missing.

See attached patch.
msg58877 - (view) Author: Joseph Armbruster (JosephArmbruster) Date: 2007-12-20 14:34
had to rush this one as i'm at work right now and did not verify it.
disregard that patch!
msg58879 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2007-12-20 14:45
Fixed in r59580
Please test it, I don't have access to a Windows box right now.
msg58880 - (view) Author: Joseph Armbruster (JosephArmbruster) Date: 2007-12-20 14:47
I used str( instead of unicode(

python  -E -tt ../lib/test/regrtest.py test_pep277

test_pep277
1 test OK.
msg58882 - (view) Author: Joseph Armbruster (JosephArmbruster) Date: 2007-12-20 14:50
and.. after performing an svn update :-)

rt test_pep277
Deleting .pyc/.pyo files ...
36 .pyc deleted, 0 .pyo deleted

python  -E -tt ../lib/test/regrtest.py test_pep277
test_pep277
1 test OK.
About to run again without deleting .pyc/.pyo first:
Press any key to continue . . .
Terminate batch job (Y/N)? y
History
Date User Action Args
2022-04-11 14:56:29adminsetgithub: 46014
2007-12-21 06:16:21loewissetstatus: pending -> closed
2007-12-20 14:50:15JosephArmbrustersetmessages: + msg58882
2007-12-20 14:47:10JosephArmbrustersetmessages: + msg58880
2007-12-20 14:45:38christian.heimessetstatus: open -> pending
resolution: fixed
messages: + msg58879
nosy: + christian.heimes
2007-12-20 14:39:53JosephArmbrustersettitle: test_pep277 missing unicode import -> test_pep277 fails
2007-12-20 14:34:48JosephArmbrustersetmessages: + msg58877
2007-12-20 14:30:53JosephArmbrustercreate