2
2
Python News
3
3
+++++++++++
4
4
5
+ What's New in Python 3.3.3?
6
+ ===========================
7
+
8
+ *Release date: TBD*
9
+
10
+ Core and Builtins
11
+ -----------------
12
+
13
+ - Issue #17927: Frame objects kept arguments alive if they had been copied into
14
+ a cell, even if the cell was cleared.
15
+
16
+ Library
17
+ -------
18
+
19
+ - Issue #17968: Fix memory leak in os.listxattr().
20
+
21
+ Documentation
22
+ -------------
23
+
24
+ - Issue #17977: The documentation for the cadefault argument's default value
25
+ in urllib.request.urlopen() is fixed to match the code.
26
+
27
+
5
28
What's New in Python 3.3.2?
6
29
===========================
7
30
@@ -12,9 +35,6 @@ What's New in Python 3.3.2?
12
35
Core and Builtins
13
36
-----------------
14
37
15
- - Issue #17927: Frame objects kept arguments alive if they had been copied into
16
- a cell, even if the cell was cleared.
17
-
18
38
- Issue #17237: Fix crash in the ASCII decoder on m68k.
19
39
20
40
- Issue #17408: Avoid using an obsolete instance of the copyreg module when
@@ -52,8 +72,6 @@ Core and Builtins
52
72
Library
53
73
-------
54
74
55
- - Issue #17968: Fix memory leak in os.listxattr().
56
-
57
75
- Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
58
76
characters() and ignorableWhitespace() methods. Original patch by Sebastian
59
77
Ortiz Vasquez.
@@ -241,9 +259,6 @@ Tests
241
259
Documentation
242
260
-------------
243
261
244
- - Issue #17977: The documentation for the cadefault argument's default value
245
- in urllib.request.urlopen() is fixed to match the code.
246
-
247
262
- Issue #15940: Specify effect of locale on time functions.
248
263
249
264
- Issue #6696: add documentation for the Profile objects, and improve
0 commit comments