summaryrefslogtreecommitdiffstats
path: root/Lib/uuid.py
Commit message (Expand)AuthorAgeFilesLines
* gh-104396: uuid.py to skip platform check for emscripten and wasi (gh-104397)Jeong, YunWon2023-05-111-1/+1
* Update MAC_address wikipedia URL in comments (#29019)1809092023-04-261-2/+2
* gh-94684: uuid: support bytes in the name argument to uuid3/5 (#94709)MonadChains2023-03-231-2/+6
* GH-88597: Rename uuid's new CLI args to be in line with uuidgen. (#101248)achhina2023-01-251-12/+16
* GH-88597: Added command line interface to UUID module. (#99463)achhina2023-01-221-0/+49
* gh-98415: Fix uuid.getnode() ifconfig implementation (#98423)Chaim Sanders2022-11-021-2/+7
* gh-95174: Handle missing waitpid and gethostbyname in WASI (GH-95181)Christian Heimes2022-07-241-0/+2
* bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)Raymond Hettinger2021-09-201-2/+2
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-2/+3
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-3/+2
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-2/+3
* bpo-41364: Reduce import overhead of uuid module (GH-21586)Steve Dower2020-07-211-7/+9
* bpo-40501: Replace ctypes code in uuid with native module (GH-19948)Steve Dower2020-05-121-157/+23
* bpo-39991: Enhance uuid parser for MAC address (GH-19045)Victor Stinner2020-03-171-31/+41
* bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043)Victor Stinner2020-03-171-1/+4
* bpo-39559: Remove unused, undocumented argument from uuid.getnode (GH-18369)Shantanu2020-02-051-1/+1
* bpo-28009: Fix uuid.uuid1() and uuid.get_node() on AIX (GH-8672)Michael Felt2019-09-261-72/+123
* bpo-9216: Add usedforsecurity to hashlib constructors (GH-16044)Christian Heimes2019-09-131-2/+5
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* bpo-28009: Fix uuid SkipUnless logic to be based on platform programs capable...Michael Felt2019-06-151-11/+32
* bpo-35701: Added __weakref__ slot to uuid.UUID (GH-11570)David H2019-01-171-1/+1
* bpo-31784: Use time.time_ns() in uuid.uuid1() (GH-11189)Victor Stinner2018-12-181-2/+2
* bpo-30977: rework code changes according to post-merge code review (GH-9106)Tal Einat2018-09-101-17/+10
* bpo-30977: make uuid.UUID use __slots__ (GH-9078)Tal Einat2018-09-061-2/+26
* bpo-33542: Ignore DUID in uuid.get_node on Windows. (GH-6922)CtrlZvi2018-05-201-1/+1
* bpo-32370: Use the correct encoding for ipconfig output in the uuid module. (...Segev Finer2018-02-131-4/+6
* bpo-32502: Discard 64-bit (and other invalid) hardware addresses (#5254)Bo Bayles2018-01-241-6/+10
* bpo-32199: The getnode() ip getter now uses 'ip link' instead of 'ip link li...xdegaye2017-12-071-1/+1
* Fix a regression in uuid added in bpo-32107. (#4677)Serhiy Storchaka2017-12-041-2/+2
* bpo-32107 - Improve MAC address calculation and fix test_uuid.py (#4600)Barry Warsaw2017-11-281-11/+60
* Revert "bpo-32107 - Better merge of #4494 (#4576)" (#4593)Victor Stinner2017-11-271-59/+11
* bpo-32107 - Better merge of #4494 (#4576)Barry Warsaw2017-11-271-11/+59
* bpo-9678: Fix determining the MAC address in the uuid module. (#4264)Serhiy Storchaka2017-11-041-2/+16
* bpo-11063: Fix _uuid module on macOS (#3855)Victor Stinner2017-10-021-1/+1
* bpo-11063, bpo-20519: avoid ctypes and improve import time for uuid (#3796)Antoine Pitrou2017-09-281-68/+108
* remove IRIX support (closes bpo-31341) (#3310)Benjamin Peterson2017-09-041-1/+1
* bpo-22807: Expose platform UUID generation safety information. (#138)Barry Warsaw2017-02-181-6/+37
* Removed unused imports.Serhiy Storchaka2016-04-241-1/+0
* Issue #19164: Improve exception message of uuid.UUID()Berker Peksag2016-03-201-1/+2
* always use os.urandom for the uuid4 algorithm (closes #25515)Benjamin Peterson2015-10-301-20/+6
* Issue #24634: Importing uuid should not try to load libc on WindowsSteve Dower2015-07-141-2/+6
* Issue #16261: Converted some bare except statements to except statementsSerhiy Storchaka2015-05-201-2/+2
* Issue #23326: Removed __ne__ implementations. Since fixing default __ne__Serhiy Storchaka2015-01-311-5/+0
* Issue #22902: The "ip" command is now used on Linux to determine MAC addressSerhiy Storchaka2014-11-301-2/+9
* Issue #19720: Suppressed context for some exceptions in importlib.Serhiy Storchaka2014-11-211-1/+4
|\
| * Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD.Serhiy Storchaka2014-11-211-1/+4
* | Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat.Serhiy Storchaka2014-11-071-28/+55
|\ \ | |/
| * Issue #17293: uuid.getnode() now determines MAC address on AIX using netstat.Serhiy Storchaka2014-11-071-19/+50
| * Issue #22131: Fixed a bug in handling an error occured during reading fromSerhiy Storchaka2014-09-061-3/+1
* | Issue #22793, #22637: Add missing "import os" in uuid._ifconfig_getnode()Victor Stinner2014-11-051-0/+1