blob: 2f770a01610e8806562ff13a6df0ea494344cca4 [file] [log] [blame]
larryhastingsf9f17342017-09-04 13:30:19 -07001.. bpo: 24305
Ned Deilyaee5df52018-06-27 18:45:50 -04002.. date: 9302
larryhastingsf9f17342017-09-04 13:30:19 -07003.. nonce: QeF4A8
4.. release date: 2015-09-07
5.. section: Core and Builtins
6
7Prevent import subsystem stack frames from being counted by the
8warnings.warn(stacklevel=) parameter.
9
10..
11
12.. bpo: 24912
Ned Deilyaee5df52018-06-27 18:45:50 -040013.. date: 9301
larryhastingsf9f17342017-09-04 13:30:19 -070014.. nonce: ubSi5J
15.. section: Core and Builtins
16
17Prevent __class__ assignment to immutable built-in objects.
18
19..
20
21.. bpo: 24975
Ned Deilyaee5df52018-06-27 18:45:50 -040022.. date: 9300
larryhastingsf9f17342017-09-04 13:30:19 -070023.. nonce: 2gLdfN
24.. section: Core and Builtins
25
Stéphane Wirtel12e696b2018-10-27 00:58:26 +020026Fix AST compilation for :pep:`448` syntax.
larryhastingsf9f17342017-09-04 13:30:19 -070027
28..
29
30.. bpo: 24917
Ned Deilyaee5df52018-06-27 18:45:50 -040031.. date: 9299
larryhastingsf9f17342017-09-04 13:30:19 -070032.. nonce: xaQocz
33.. section: Library
34
35time_strftime() buffer over-read.
36
37..
38
39.. bpo: 24748
Ned Deilyaee5df52018-06-27 18:45:50 -040040.. date: 9298
larryhastingsf9f17342017-09-04 13:30:19 -070041.. nonce: 83NuO8
42.. section: Library
43
44To resolve a compatibility problem found with py2exe and pywin32,
45imp.load_dynamic() once again ignores previously loaded modules to support
46Python modules replacing themselves with extension modules. Patch by Petr
47Viktorin.
48
49..
50
51.. bpo: 24635
Ned Deilyaee5df52018-06-27 18:45:50 -040052.. date: 9297
larryhastingsf9f17342017-09-04 13:30:19 -070053.. nonce: EiJPPf
54.. section: Library
55
56Fixed a bug in typing.py where isinstance([], typing.Iterable) would return
57True once, then False on subsequent calls.
58
59..
60
61.. bpo: 24989
Ned Deilyaee5df52018-06-27 18:45:50 -040062.. date: 9296
larryhastingsf9f17342017-09-04 13:30:19 -070063.. nonce: 9BJLiy
64.. section: Library
65
66Fixed buffer overread in BytesIO.readline() if a position is set beyond
67size. Based on patch by John Leitch.
68
69..
70
71.. bpo: 24913
Ned Deilyaee5df52018-06-27 18:45:50 -040072.. date: 9295
larryhastingsf9f17342017-09-04 13:30:19 -070073.. nonce: p2ZAJ4
74.. section: Library
75
76Fix overrun error in deque.index(). Found by John Leitch and Bryce Darling.