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_issue7820 fails: "name '?' is not defined"
Type: behavior Stage: resolved
Components: Tests Versions: Python 2.7
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: l0nwlf, mark.dickinson, ned.deily, vstinner
Priority: normal Keywords:

Created on 2010-03-23 05:52 by ned.deily, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg101560 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-03-23 05:52
Trunk running on OS X 10.6.2:

======================================================================
ERROR: test_issue7820 (test.test_pep263.PEP263Test)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/private/tmp/pp/usr/local/lib/python2.7/test/test_pep263.py", line 39, in test_issue7820
    self.assertRaises(SyntaxError, eval, '\xff\x20')
  File "/private/tmp/pp/usr/local/lib/python2.7/unittest/case.py", line 444, in assertRaises
    callableObj(*args, **kwargs)
  File "<string>", line 1, in <module>
NameError: name '?' is not defined

----------------------------------------------------------------------
msg101968 - (view) Author: Shashwat Anand (l0nwlf) Date: 2010-03-31 00:57
I did not find any issue here.

Trunk running on OS X 10.6.2:

06:25:00 l0nwlf-MBP:test $ python2.7 -V
Python 2.7a4+
06:25:05 l0nwlf-MBP:test $ python2.7 test_pep263.py 
test_compilestring (__main__.PEP263Test) ... ok
test_issue3297 (__main__.PEP263Test) ... ok
test_issue7820 (__main__.PEP263Test) ... ok
test_pep263 (__main__.PEP263Test) ... ok

----------------------------------------------------------------------
Ran 4 tests in 0.003s

OK
msg102299 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-04-03 22:07
Duplicated in Issue8307
History
Date User Action Args
2022-04-11 14:56:58adminsetgithub: 52455
2010-04-03 22:12:43ezio.melottisetstatus: open -> closed
resolution: duplicate
stage: resolved
2010-04-03 22:07:32ned.deilysetnosy: + mark.dickinson
messages: + msg102299
2010-03-31 00:57:48l0nwlfsetnosy: + l0nwlf
messages: + msg101968
2010-03-23 05:52:35ned.deilycreate