[issue18784] minor uuid.py loading optimization

2014-09-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset f9cd915410d2 by Georg Brandl in branch '3.2': Issue #19855: uuid.getnode() on Unix now looks on the PATH for the https://hg.python.org/cpython/rev/f9cd915410d2 -- ___ Python tracker

[issue18784] minor uuid.py loading optimization

2013-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Evgeny. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker

[issue18784] minor uuid.py loading optimization

2013-09-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7aaba721ebc0 by Serhiy Storchaka in branch '3.3': Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, http://hg.python.org/cpython/rev/7aaba721ebc0 New changeset 66ec8431032d by Serhiy Storchaka in branch 'default': Issue #1

[issue18784] minor uuid.py loading optimization

2013-09-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> serhiy.storchaka stage: -> commit review versions: +Python 3.3, Python 3.4 ___ Python tracker ___

[issue18784] minor uuid.py loading optimization

2013-08-19 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue18784] minor uuid.py loading optimization

2013-08-19 Thread Evgeny Sologubov
New submission from Evgeny Sologubov: Please see the patch attached. It quite is primitive and self-explanatory: the code wouldn't attempt to load *libc* via ctypes.CDLL, if all necessary functions are already found in *libuuid*. This patch also can serve as a work-around solution to issue #17