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_tcl assertion failure, 2.7, Win 7
Type: behavior Stage: resolved
Components: Versions: Python 2.7
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: serhiy.storchaka, terry.reedy, zach.ware
Priority: normal Keywords:

Created on 2015-05-13 21:58 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (8)
msg243125 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2015-05-13 21:58
Win 7, fresh build, only on 2.7
  File "F:\Python\dev\27\lib\test\test_tcl.py", line 225, in test_evalfile_null_in_result
    self.assertEqual(tcl.eval('set a'), 'a\xc0\x80b')
Fails
msg243128 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-05-13 22:45
What is error message?
msg243153 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2015-05-14 05:31
Reran, same result: 'a' != 'a\xc0\x80b'
in class TclTest.  Ran 39 tests, skipped 4 (bigmem) tests.
msg243154 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-05-14 05:34
What if comment out this line?
msg243156 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2015-05-14 05:50
All 39 pass.
msg243157 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-05-14 05:53
What is Tcl version?
msg243193 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2015-05-14 15:23
The one bundled with 2.7, which now is 8.5.15.0.
msg367345 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 01:36
As 2.7 is EOL and 3.x use Tcl/Tk 8.6.x, I'm closing this issue.
History
Date User Action Args
2022-04-11 14:58:16adminsetgithub: 68370
2020-04-27 01:36:35zach.waresetstatus: open -> closed

nosy: + zach.ware
messages: + msg367345

resolution: out of date
stage: needs patch -> resolved
2015-05-14 15:23:27terry.reedysetmessages: + msg243193
2015-05-14 05:53:59serhiy.storchakasetmessages: + msg243157
2015-05-14 05:50:24terry.reedysetmessages: + msg243156
2015-05-14 05:34:58serhiy.storchakasetmessages: + msg243154
2015-05-14 05:31:26terry.reedysetmessages: + msg243153
2015-05-13 22:45:13serhiy.storchakasetmessages: + msg243128
2015-05-13 21:58:07terry.reedycreate