#13239 closed (fixed)
'makemessages' regression test raises error on close
Description ¶
If you run the makemessages unit test, you get an error printed after the test success has been reported::
Exception exceptions.AttributeError: "'NoneType' object has no attribute 'maxint'" in <bound method Popen.__del__ of <subprocess.Popen object at 0x128bef0>> ignored
This appears to be due to a bug in Python, but there's an easy workaround - manually force the deletion of the Popen object.
Change History (3)
comment:1 by , 15 years ago
Triage Stage: | Unreviewed → Accepted |
---|---|
Version: | 1.1 → 1.2-beta |
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [12874]) Fixed #13239 -- Forced the deletion of the Popen object, avoiding a bug in Python's subprocess cleanup code.