commit | 9aa16d93c9570771bdb8f0819e4b17f4284c952e | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Apr 20 09:21:23 2015 +0300 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Apr 20 09:21:23 2015 +0300 |
tree | d99399279e4224251f689f1a2b80b764ce6835e8 | |
parent | 3ce7873fddef05ecd6c5da2d5bd40206fee3805c [diff] [blame] |
Issue #23842: os.major(), os.minor() and os.makedev() now support ints again.
diff --git a/Misc/NEWS b/Misc/NEWS index b06d5b1..e01aeb2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -21,6 +21,8 @@ Library ------- +- Issue #23842: os.major(), os.minor() and os.makedev() now support ints again. + - Issue #23811: Add missing newline to the PyCompileError error message. Patch by Alex Shkop.