1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
|
.. bpo: 17432
.. date: 8188
.. nonce: mmNI4f
.. release date: 2014-01-05
.. section: Core and Builtins
Drop UCS2 from names of Unicode functions in python3.def.
..
.. bpo: 19526
.. date: 8187
.. nonce: 9WWttQ
.. section: Core and Builtins
Exclude all new API from the stable ABI. Exceptions can be made if a need is
demonstrated.
..
.. bpo: 19969
.. date: 8186
.. nonce: mmRsrB
.. section: Core and Builtins
PyBytes_FromFormatV() now raises an OverflowError if "%c" argument is not in
range [0; 255].
..
.. bpo: 19995
.. date: 8185
.. nonce: gQHtAc
.. section: Core and Builtins
%c, %o, %x, and %X now issue a DeprecationWarning on non-integer input;
reworded docs to clarify that an integer type should define both __int__ and
__index__.
..
.. bpo: 19787
.. date: 8184
.. nonce: tAMy-H
.. section: Core and Builtins
PyThread_set_key_value() now always set the value. In Python 3.3, the
function did nothing if the key already exists (if the current value is a
non-NULL pointer).
..
.. bpo: 14432
.. date: 8183
.. nonce: yov4oy
.. section: Core and Builtins
Remove the thread state field from the frame structure. Fix a crash when a
generator is created in a C thread that is destroyed while the generator is
still used. The issue was that a generator contains a frame, and the frame
kept a reference to the Python state of the destroyed C thread. The crash
occurs when a trace function is setup.
..
.. bpo: 19576
.. date: 8182
.. nonce: b_UtIp
.. section: Core and Builtins
PyGILState_Ensure() now initializes threads. At startup, Python has no
concrete GIL. If PyGILState_Ensure() is called from a new thread for the
first time and PyEval_InitThreads() was not called yet, a GIL needs to be
created.
..
.. bpo: 17576
.. date: 8181
.. nonce: ukzqsg
.. section: Core and Builtins
Deprecation warning emitted now when __int__() or __index__() return not int
instance.
..
.. bpo: 19932
.. date: 8180
.. nonce: ZU_tXW
.. section: Core and Builtins
Fix typo in import.h, missing whitespaces in function prototypes.
..
.. bpo: 19736
.. date: 8179
.. nonce: j35rNX
.. section: Core and Builtins
Add module-level statvfs constants defined for GNU/glibc based systems.
..
.. bpo: 20097
.. date: 8178
.. nonce: _L-Wql
.. section: Core and Builtins
Fix bad use of "self" in importlib's WindowsRegistryFinder.
..
.. bpo: 19729
.. date: 8177
.. nonce: HmZThe
.. section: Core and Builtins
In str.format(), fix recursive expansion in format spec.
..
.. bpo: 19638
.. date: 8176
.. nonce: lh5Awt
.. section: Core and Builtins
Fix possible crash / undefined behaviour from huge (more than 2 billion
characters) input strings in _Py_dg_strtod.
..
.. bpo: 20154
.. date: 8175
.. nonce: 5JyK0Q
.. section: Library
Deadlock in asyncio.StreamReader.readexactly().
..
.. bpo: 16113
.. date: 8174
.. nonce: 2gaEPO
.. section: Library
Remove sha3 module again.
..
.. bpo: 20111
.. date: 8173
.. nonce: NsoIDi
.. section: Library
pathlib.Path.with_suffix() now sanity checks the given suffix.
..
.. bpo: 0
.. date: 8172
.. nonce: 6LOl16
.. section: Library
Fix breakage in TestSuite.countTestCases() introduced by issue #11798.
..
.. bpo: 20108
.. date: 8171
.. nonce: HxuC0s
.. section: Library
Avoid parameter name clash in inspect.getcallargs().
..
.. bpo: 19918
.. date: 8170
.. nonce: SciMAd
.. section: Library
Fix PurePath.relative_to() under Windows.
..
.. bpo: 19422
.. date: 8169
.. nonce: 1dRaPS
.. section: Library
Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than
silently let them emit clear text data.
..
.. bpo: 20046
.. date: 8168
.. nonce: NkWtze
.. section: Library
Locale alias table no longer contains entities which can be calculated.
Generalized support of the euro modifier.
..
.. bpo: 20027
.. date: 8167
.. nonce: dtB7OG
.. section: Library
Fixed locale aliases for devanagari locales.
..
.. bpo: 20067
.. date: 8166
.. nonce: MlnlYd
.. section: Library
Tkinter variables now work when wantobjects is false.
..
.. bpo: 19020
.. date: 8165
.. nonce: _16K__
.. section: Library
Tkinter now uses splitlist() instead of split() in configure methods.
..
.. bpo: 19744
.. date: 8164
.. nonce: frub3A
.. section: Library
ensurepip now provides a better error message when Python is built without
SSL/TLS support (pip currently requires that support to run, even if only
operating with local wheel files)
..
.. bpo: 19734
.. date: 8163
.. nonce: jHpBF-
.. section: Library
ensurepip now ignores all pip environment variables to avoid odd behaviour
based on user configuration settings
..
.. bpo: 0
.. date: 8162
.. nonce: d5LOJv
.. section: Library
Fix TypeError on "setup.py upload --show-response".
..
.. bpo: 20045
.. date: 8161
.. nonce: fdKDSA
.. section: Library
Fix "setup.py register --list-classifiers".
..
.. bpo: 18879
.. date: 8160
.. nonce: CEiozo
.. section: Library
When a method is looked up on a temporary file, avoid closing the file
before the method is possibly called.
..
.. bpo: 20037
.. date: 8159
.. nonce: Mnn2jV
.. section: Library
Avoid crashes when opening a text file late at interpreter shutdown.
..
.. bpo: 19967
.. date: 8158
.. nonce: 0zAW9L
.. section: Library
Thanks to the PEP 442, asyncio.Future now uses a destructor to log uncaught
exceptions, instead of the dedicated _TracebackLogger class.
..
.. bpo: 0
.. date: 8157
.. nonce: Gqaj5f
.. section: Library
Added a Task.current_task() class method to asyncio.
..
.. bpo: 19850
.. date: 8156
.. nonce: WPTJDe
.. section: Library
Set SA_RESTART in asyncio when registering a signal handler to limit EINTR
occurrences.
..
.. bpo: 0
.. date: 8155
.. nonce: JivAZe
.. section: Library
Implemented write flow control in asyncio for proactor event loop (Windows).
..
.. bpo: 0
.. date: 8154
.. nonce: WBY2wl
.. section: Library
Change write buffer in asyncio use to avoid O(N**2) behavior. Make
write()/sendto() accept bytearray/memoryview.
..
.. bpo: 20034
.. date: 8153
.. nonce: GlYpNX
.. section: Library
Updated alias mapping to most recent locale.alias file from X.org
distribution using makelocalealias.py.
..
.. bpo: 5815
.. date: 8152
.. nonce: FxSb0P
.. section: Library
Fixed support for locales with modifiers. Fixed support for locale
encodings with hyphens.
..
.. bpo: 20026
.. date: 8151
.. nonce: KO1jB6
.. section: Library
Fix the sqlite module to handle correctly invalid isolation level (wrong
type).
..
.. bpo: 18829
.. date: 8150
.. nonce: QPwJFn
.. section: Library
csv.Dialect() now checks type for delimiter, escapechar and quotechar
fields. Original patch by Vajrasky Kok.
..
.. bpo: 19855
.. date: 8149
.. nonce: TtBUO6
.. section: Library
uuid.getnode() on Unix now looks on the PATH for the executables used to
find the mac address, with /sbin and /usr/sbin as fallbacks.
..
.. bpo: 20007
.. date: 8148
.. nonce: IaSnPo
.. section: Library
HTTPResponse.read(0) no more prematurely closes connection. Original patch
by Simon Sapin.
..
.. bpo: 19946
.. date: 8147
.. nonce: hcbn92
.. section: Library
multiprocessing now uses runpy to initialize __main__ in child processes
when necessary, allowing it to correctly handle scripts without suffixes and
submodules that use explicit relative imports or otherwise rely on parent
modules being correctly imported prior to execution.
..
.. bpo: 19921
.. date: 8146
.. nonce: LGeNky
.. section: Library
When Path.mkdir() is called with parents=True, any missing parent is created
with the default permissions, ignoring the mode argument (mimicking the
POSIX "mkdir -p" command).
..
.. bpo: 19887
.. date: 8145
.. nonce: 2jM2qA
.. section: Library
Improve the Path.resolve() algorithm to support certain symlink chains.
..
.. bpo: 19912
.. date: 8144
.. nonce: TviIPi
.. section: Library
Fixed numerous bugs in ntpath.splitunc().
..
.. bpo: 19911
.. date: 8143
.. nonce: w1QmnT
.. section: Library
ntpath.splitdrive() now correctly processes the 'İ' character (U+0130, LATIN
CAPITAL LETTER I WITH DOT ABOVE).
..
.. bpo: 19532
.. date: 8142
.. nonce: vCt7bh
.. section: Library
python -m compileall with no filename/directory arguments now respects the
-f and -q flags instead of ignoring them.
..
.. bpo: 19623
.. date: 8141
.. nonce: zv4rIL
.. section: Library
Fixed writing to unseekable files in the aifc module.
..
.. bpo: 19946
.. date: 8140
.. nonce: b4Js6X
.. section: Library
multiprocessing.spawn now raises ImportError when the module to be used as
the main module cannot be imported.
..
.. bpo: 17919
.. date: 8139
.. nonce: H5iGXv
.. section: Library
select.poll.register() again works with poll.POLLNVAL on AIX. Fixed integer
overflow in the eventmask parameter.
..
.. bpo: 19063
.. date: 8138
.. nonce: pQzK1K
.. section: Library
if a Charset's body_encoding was set to None, the email package would
generate a message claiming the Content-Transfer-Encoding was 7bit, and
produce garbage output for the content. This now works. A couple of other
set_payload mishandlings of non-ASCII are also fixed. In addition, calling
set_payload with a string argument without specifying a charset now raises
an error (this is a new error in 3.4).
..
.. bpo: 15475
.. date: 8137
.. nonce: -vqlm1
.. section: Library
Add __sizeof__ implementations for itertools objects.
..
.. bpo: 19944
.. date: 8136
.. nonce: XxQU2O
.. section: Library
Fix importlib.find_spec() so it imports parents as needed and move the
function to importlib.util.
..
.. bpo: 19880
.. date: 8135
.. nonce: wJls1u
.. section: Library
Fix a reference leak in unittest.TestCase. Explicitly break reference cycles
between frames and the _Outcome instance.
..
.. bpo: 17429
.. date: 8134
.. nonce: dlZP0_
.. section: Library
platform.linux_distribution() now decodes files from the UTF-8 encoding with
the surrogateescape error handler, instead of decoding from the locale
encoding in strict mode. It fixes the function on Fedora 19 which is
probably the first major distribution release with a non-ASCII name. Patch
written by Toshio Kuratomi.
..
.. bpo: 19343
.. date: 8133
.. nonce: La15PA
.. section: Library
Expose FreeBSD-specific APIs in resource module. Original patch by Koobs.
..
.. bpo: 19929
.. date: 8132
.. nonce: BZDeEj
.. section: Library
Call os.read with 32768 within subprocess.Popen.communicate rather than 4096
for efficiency. A microbenchmark shows Linux and OS X both using ~50% less
cpu time this way.
..
.. bpo: 19506
.. date: 8131
.. nonce: GteUMC
.. section: Library
Use a memoryview to avoid a data copy when piping data to stdin within
subprocess.Popen.communicate. 5-10% less cpu usage.
..
.. bpo: 19876
.. date: 8130
.. nonce: 2YXHY-
.. section: Library
selectors unregister() no longer raises ValueError or OSError if the FD is
closed (as long as it was registered).
..
.. bpo: 19908
.. date: 8129
.. nonce: rOsMVQ
.. section: Library
pathlib now joins relative Windows paths correctly when a drive is present.
Original patch by Antoine Pitrou.
..
.. bpo: 19296
.. date: 8128
.. nonce: WVPZAK
.. section: Library
Silence compiler warning in dbm_open
..
.. bpo: 6784
.. date: 8127
.. nonce: uxEt6F
.. section: Library
Strings from Python 2 can now be unpickled as bytes objects by setting the
encoding argument of Unpickler to be 'bytes'. Initial patch by Merlijn van
Deen.
..
.. bpo: 19839
.. date: 8126
.. nonce: qfP0k5
.. section: Library
Fix regression in bz2 module's handling of non-bzip2 data at EOF, and
analogous bug in lzma module.
..
.. bpo: 19881
.. date: 8125
.. nonce: NKrKAh
.. section: Library
Fix pickling bug where cpickle would emit bad pickle data for large bytes
string (i.e., with size greater than 2**32-1).
..
.. bpo: 19138
.. date: 8124
.. nonce: xwKrX_
.. section: Library
doctest's IGNORE_EXCEPTION_DETAIL now allows a match when no exception
detail exists (no colon following the exception's name, or a colon does
follow but no text follows the colon).
..
.. bpo: 19927
.. date: 8123
.. nonce: ZijD-E
.. section: Library
Add __eq__ to path-based loaders in importlib.
..
.. bpo: 19827
.. date: 8122
.. nonce: KBYfyd
.. section: Library
On UNIX, setblocking() and settimeout() methods of socket.socket can now
avoid a second syscall if the ioctl() function can be used, or if the non-
blocking flag of the socket is unchanged.
..
.. bpo: 19785
.. date: 8121
.. nonce: dTWAof
.. section: Library
smtplib now supports SSLContext.check_hostname and server name indication
for TLS/SSL connections.
..
.. bpo: 19784
.. date: 8120
.. nonce: t85DbS
.. section: Library
poplib now supports SSLContext.check_hostname and server name indication for
TLS/SSL connections.
..
.. bpo: 19783
.. date: 8119
.. nonce: VRsf8d
.. section: Library
nntplib now supports SSLContext.check_hostname and server name indication
for TLS/SSL connections.
..
.. bpo: 19782
.. date: 8118
.. nonce: 7jF-re
.. section: Library
imaplib now supports SSLContext.check_hostname and server name indication
for TLS/SSL connections.
..
.. bpo: 20123
.. date: 8117
.. nonce: o-MHVk
.. section: Library
Fix pydoc.synopsis() for "binary" modules.
..
.. bpo: 19834
.. date: 8116
.. nonce: rlFmTq
.. section: Library
Support unpickling of exceptions pickled by Python 2.
..
.. bpo: 19781
.. date: 8115
.. nonce: 4ZiyRb
.. section: Library
ftplib now supports SSLContext.check_hostname and server name indication for
TLS/SSL connections.
..
.. bpo: 19509
.. date: 8114
.. nonce: I2qj0u
.. section: Library
Add SSLContext.check_hostname to match the peer's certificate with
server_hostname on handshake.
..
.. bpo: 15798
.. date: 8113
.. nonce: 1bxNCP
.. section: Library
Fixed subprocess.Popen() to no longer fail if file descriptor 0, 1 or 2 is
closed.
..
.. bpo: 17897
.. date: 8112
.. nonce: 0iKzvE
.. section: Library
Optimized unpickle prefetching.
..
.. bpo: 3693
.. date: 8111
.. nonce: _c0s5z
.. section: Library
Make the error message more helpful when the array.array() constructor is
given a str. Move the array module typecode documentation to the docstring
of the constructor.
..
.. bpo: 19088
.. date: 8110
.. nonce: JBKVzp
.. section: Library
Fixed incorrect caching of the copyreg module in object.__reduce__() and
object.__reduce_ex__().
..
.. bpo: 19698
.. date: 8109
.. nonce: Xcq8uC
.. section: Library
Removed exec_module() methods from importlib.machinery.BuiltinImporter and
ExtensionFileLoader.
..
.. bpo: 18864
.. date: 8108
.. nonce: 2CR2Xi
.. section: Library
Added a setter for ModuleSpec.has_location.
..
.. bpo: 0
.. date: 8107
.. nonce: UKWITk
.. section: Library
Fixed _pickle.Unpickler to not fail when loading empty strings as persistent
IDs.
..
.. bpo: 11480
.. date: 8106
.. nonce: qkIZLG
.. section: Library
Fixed copy.copy to work with classes with custom metaclasses. Patch by
Daniel Urban.
..
.. bpo: 6477
.. date: 8105
.. nonce: nK1lHr
.. section: Library
Added support for pickling the types of built-in singletons (i.e., Ellipsis,
NotImplemented, None).
..
.. bpo: 19713
.. date: 8104
.. nonce: UhiUKc
.. section: Library
Add remaining PEP 451-related deprecations and move away from using
find_module/find_loaer/load_module.
..
.. bpo: 19708
.. date: 8103
.. nonce: HJuToY
.. section: Library
Update pkgutil to use the new importer APIs.
..
.. bpo: 19703
.. date: 8102
.. nonce: pLtVYQ
.. section: Library
Update pydoc to use the new importer APIs.
..
.. bpo: 19851
.. date: 8101
.. nonce: 4HQZWz
.. section: Library
Fixed a regression in reloading sub-modules.
..
.. bpo: 0
.. date: 8100
.. nonce: 3H16yn
.. section: Library
ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME.
..
.. bpo: 19802
.. date: 8099
.. nonce: PswaEk
.. section: Library
Add socket.SO_PRIORITY.
..
.. bpo: 11508
.. date: 8098
.. nonce: fx7Abs
.. section: Library
Fixed uuid.getnode() and uuid.uuid1() on environment with virtual interface.
Original patch by Kent Frazier.
..
.. bpo: 11489
.. date: 8097
.. nonce: 3ZQHi8
.. section: Library
JSON decoder now accepts lone surrogates.
..
.. bpo: 19545
.. date: 8096
.. nonce: 1FBY5Z
.. section: Library
Avoid chained exceptions while passing stray % to time.strptime(). Initial
patch by Claudiu Popa.
..
.. bpo: 20058
.. date: 8095
.. nonce: KnDlhH
.. section: IDLE
sys.stdin.readline() in IDLE now always returns only one line.
..
.. bpo: 19481
.. date: 8094
.. nonce: BNkHOm
.. section: IDLE
print() of string subclass instance in IDLE no longer hangs.
..
.. bpo: 18270
.. date: 8093
.. nonce: lu6dRW
.. section: IDLE
Prevent possible IDLE AttributeError on OS X when no initial shell window is
present.
..
.. bpo: 20055
.. date: 8092
.. nonce: iE7yU6
.. section: Tests
Fix test_shutil under Windows with symlink privileges held. Patch by
Vajrasky Kok.
..
.. bpo: 20070
.. date: 8091
.. nonce: HpyZrQ
.. section: Tests
Don't run test_urllib2net when network resources are not enabled.
..
.. bpo: 19938
.. date: 8090
.. nonce: 2iLiKJ
.. section: Tests
Re-enabled test_bug_1333982 in test_dis, which had been disabled since 3.0
due to the changes in listcomp handling.
..
.. bpo: 19320
.. date: 8089
.. nonce: 9x_cw5
.. section: Tests
test_tcl no longer fails when wantobjects is false.
..
.. bpo: 19919
.. date: 8088
.. nonce: N9bnWv
.. section: Tests
Fix flaky SSL test. connect_ex() sometimes returns EWOULDBLOCK on Windows or
VMs hosted on Windows.
..
.. bpo: 19912
.. date: 8087
.. nonce: NmE9ZX
.. section: Tests
Added tests for ntpath.splitunc().
..
.. bpo: 19828
.. date: 8086
.. nonce: f5HrFG
.. section: Tests
Fixed test_site when the whole suite is run with -S.
..
.. bpo: 19928
.. date: 8085
.. nonce: dwOQ95
.. section: Tests
Implemented a test for repr() of cell objects.
..
.. bpo: 19535
.. date: 8084
.. nonce: 9ZtpA7
.. section: Tests
Fixed test_docxmlrpc, test_functools, test_inspect, and test_statistics when
python is run with -OO.
..
.. bpo: 19926
.. date: 8083
.. nonce: fkWjtw
.. section: Tests
Removed unneeded test_main from test_abstract_numbers. Patch by Vajrasky
Kok.
..
.. bpo: 19572
.. date: 8082
.. nonce: _65KAy
.. section: Tests
More skipped tests explicitly marked as skipped.
..
.. bpo: 19595
.. date: 8081
.. nonce: q5oNE_
.. section: Tests
Re-enabled a long-disabled test in test_winsound. (See also: bpo-19987)
..
.. bpo: 19588
.. date: 8080
.. nonce: EXKxpC
.. section: Tests
Fixed tests in test_random that were silently skipped most of the time.
Patch by Julian Gindi.
..
.. bpo: 19728
.. date: 8079
.. nonce: q1zXeT
.. section: Build
Enable pip installation by default on Windows.
..
.. bpo: 16136
.. date: 8078
.. nonce: FQGvGl
.. section: Build
Remove VMS support
..
.. bpo: 18215
.. date: 8077
.. nonce: yw2j0l
.. section: Build
Add script Tools/ssl/test_multiple_versions.py to compile and run Python's
unit tests with multiple versions of OpenSSL.
..
.. bpo: 19922
.. date: 8076
.. nonce: cG30aH
.. section: Build
define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t for mbrtowc().
..
.. bpo: 19788
.. date: 8075
.. nonce: P7qrFB
.. section: Build
kill_python(_d).exe is now run as a PreBuildEvent on the pythoncore sub-
project. This should prevent build errors due a previous build's
python(_d).exe still running.
..
.. bpo: 20265
.. date: 8074
.. nonce: J7Xxm7
.. section: Documentation
Updated some parts of the Using Windows document.
..
.. bpo: 20266
.. date: 8073
.. nonce: CieiXa
.. section: Documentation
Updated some parts of the Windows FAQ.
..
.. bpo: 20255
.. date: 8072
.. nonce: SnYjEP
.. section: Documentation
Updated the about and bugs pages.
..
.. bpo: 20253
.. date: 8071
.. nonce: nbp6uJ
.. section: Documentation
Fixed a typo in the ipaddress docs that advertised an illegal attribute
name. Found by INADA Naoki.
..
.. bpo: 18840
.. date: 8070
.. nonce: _2UItV
.. section: Documentation
Introduce the json module in the tutorial, and de-emphasize the pickle
module.
..
.. bpo: 19845
.. date: 8069
.. nonce: luj-oI
.. section: Documentation
Updated the Compiling Python on Windows section.
..
.. bpo: 19795
.. date: 8068
.. nonce: z5sbe1
.. section: Documentation
Improved markup of True/False constants.
..
.. bpo: 19659
.. date: 8067
.. nonce: kghZl0
.. section: Tools/Demos
Added documentation for Argument Clinic.
..
.. bpo: 19976
.. date: 8066
.. nonce: My60GG
.. section: Tools/Demos
Argument Clinic METH_NOARGS functions now always take two parameters.
|