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.

Author poq
Recipients poq, terry.reedy
Date 2011-05-31.17:07:51
SpamBayes Score 5.6403826e-07
Marked as misclassified No
Message-id <1306861672.05.0.573191883726.issue12142@psf.upfronthosting.co.za>
In-reply-to
Content
Tests succeed with this change.

There is only one use of _array_type, which is in the same module. This use is presumably tested, because the test fails if I change the line to _array_type = type(Structure).

In fact, everything must behave exactly the same after this change, because the two values are identical:

>>> from ctypes import *
>>> type(c_int * 3) is type(Array)
True
History
Date User Action Args
2011-05-31 17:07:52poqsetrecipients: + poq, terry.reedy
2011-05-31 17:07:52poqsetmessageid: <1306861672.05.0.573191883726.issue12142@psf.upfronthosting.co.za>
2011-05-31 17:07:51poqlinkissue12142 messages
2011-05-31 17:07:51poqcreate