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 jnoller
Recipients amaury.forgeotdarc, barry, christian.heimes, jnoller, loewis, rhettinger
Date 2009-01-18.02:32:21
SpamBayes Score 4.070862e-05
Marked as misclassified No
Message-id <1232245943.5.0.0348421927491.issue4449@psf.upfronthosting.co.za>
In-reply-to
Content
FYI, there was a small issue in the patch - namely the only way to get the 
AttributeError to raise in the Value/Array creation is to not pass in a 
lock, True/None or False - the latter three get to a lock/RLock while the 
former will have the acquire method. I changed the test to reflect this:

    self.assertRaises(AttributeError, self.Value, 'i', 5, lock='navalue')
    self.assertRaises(AttributeError,
                      self.Array, 'i', range(10), lock='notalock')
History
Date User Action Args
2009-01-18 02:33:43jnollerunlinkissue4449 messages
2009-01-18 02:32:23jnollersetrecipients: + jnoller, loewis, barry, rhettinger, amaury.forgeotdarc, christian.heimes
2009-01-18 02:32:23jnollersetmessageid: <1232245943.5.0.0348421927491.issue4449@psf.upfronthosting.co.za>
2009-01-18 02:32:22jnollerlinkissue4449 messages
2009-01-18 02:32:21jnollercreate