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: Array tests have nonsense in them
Type: Stage:
Components: Library (Lib) Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex, georg.brandl, r.david.murray
Priority: normal Keywords:

Created on 2010-12-10 01:54 by alex, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg123714 - (view) Author: Alex Gaynor (alex) * (Python committer) Date: 2010-12-10 01:54
In ArraySubclassWithKwargs, when __init__ is called it doesn't actually pass self to `array.array.__init__`, this doesn't actually cause errors because the contents of the array isn't tested anywhere.
msg123715 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-12-10 02:29
This class was added by the fix for issue 1486663 in r53509.  Adding Georg as nosy since he committed it, but it seems like it would be worth fixing it in case someone else uses the class in an additional test in the future.
msg123722 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-12-10 10:01
Fixed in r87156.
History
Date User Action Args
2022-04-11 14:57:10adminsetgithub: 54877
2010-12-10 10:01:50georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg123722
2010-12-10 02:29:42r.david.murraysetversions: + Python 3.1, Python 3.2
2010-12-10 02:29:26r.david.murraysetnosy: + r.david.murray, georg.brandl
messages: + msg123715
2010-12-10 01:54:21alexcreate