[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2016-03-20 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Matt! -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2016-03-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset d9301ebef8d8 by Berker Peksag in branch '3.5': Issue #12813: uuid.uuid4() no longer depends on ctypes https://hg.python.org/cpython/rev/d9301ebef8d8 New changeset 462be0479f11 by Berker Peksag in branch 'default': Issue #12813: uuid.uuid4() no longe

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2016-03-20 Thread Berker Peksag
Berker Peksag added the comment: Since 756d040aa8e8, uuid.uuid4() no longer depends on ctypes. I'll remove the 'requires ctypes' condition from test_uuid4. -- nosy: +berker.peksag versions: +Python 3.5, Python 3.6 -Python 3.3 ___ Python tracker

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2015-10-11 Thread R. David Murray
R. David Murray added the comment: I doesn't look that way to me. test_uuid4 is still skipped if there is no cytpes in 3.6, and I don't see the new test methods from the patch. I'd say this was still valid. -- nosy: +r.david.murray ___ Python trac

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2015-10-10 Thread Chris Angelico
Chris Angelico added the comment: 3.6 doesn't have this check, so I would say that yes, this has indeed been fixed. Issue can be closed fixed. -- nosy: +Rosuav ___ Python tracker __

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2014-06-24 Thread Mark Lawrence
Mark Lawrence added the comment: I believe the code in the patch has already been applied, can somebody confirm that I'm correct please. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue12813] uuid4 is not tested if a uuid4 system routine isn't present

2011-08-21 Thread Matt Joiner
New submission from Matt Joiner : The uuid.uuid4 function is not tested if a C system routine is not present, despite that uuid4 has several fallback clauses. This patch will test at least the first fallback. -- components: Library (Lib) files: uuid4-test-no-system-routine-fallback.pat