summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-08-16 13:08:25 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2006-08-16 13:08:25 +0000
commit581795902ded7050522e9af61d997b6ee0e64188 (patch)
tree0b81355759d6a0d68515d1b42616ee43f759c094
parentd32e6167228127da7d31e355d91852825f317c54 (diff)
downloadcpython-git-581795902ded7050522e9af61d997b6ee0e64188.tar.gz
news entry for 51307
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ef9de6b429..587ed1e128 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -64,6 +64,11 @@ Core and builtins
Library
-------
+- uuid.UUID now has a bytes_le attribute. This returns the UUID in
+ little-endian byte order for Windows. In addition, uuid.py had some
+ workarounds for clocks with low resolution, to stop the code yielding
+ duplicate UUIDs.
+
- Patch #1540892: site.py Quitter() class attempts to close sys.stdin
before raising SystemExit, allowing IDLE to honor quit() and exit().