Steve Dower
|
76998fef2c
|
Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore)
|
2015-02-26 14:25:33 -08:00 |
Antoine Pitrou
|
e71258a0e6
|
Issue #15955: Add an option to limit the output size in bz2.decompress().
Patch by Nikolaus Rath.
|
2015-02-26 13:08:07 +01:00 |
Serhiy Storchaka
|
4f38e483c2
|
Issue #6639: Module-level turtle functions no longer raise TclError after
closing the window.
|
2015-02-22 17:26:35 +02:00 |
Serhiy Storchaka
|
80a1803193
|
Issue #6639: Module-level turtle functions no longer raise TclError after
closing the window.
|
2015-02-22 17:25:33 +02:00 |
Serhiy Storchaka
|
a3369a524c
|
Issues #814253, #9179: Warnings now are raised when group references and
conditional group references are used in lookbehind assertions in regular
expressions.
|
2015-02-21 12:08:52 +02:00 |
Serhiy Storchaka
|
4eea62fd2e
|
Issues #814253, #9179: Group references and conditional group references now
work in lookbehind assertions in regular expressions.
|
2015-02-21 10:07:35 +02:00 |
Serhiy Storchaka
|
df80706f14
|
Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError.
Original patch by Aleksi Torhamo.
|
2015-02-21 01:21:08 +02:00 |
Serhiy Storchaka
|
a1543cdcd6
|
Issue #23215: Multibyte codecs with custom error handlers that ignores errors
consumed too much memory and raised SystemError or MemoryError.
Original patch by Aleksi Torhamo.
|
2015-02-21 01:19:58 +02:00 |
Serhiy Storchaka
|
254dd59068
|
Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.
|
2015-02-21 00:35:53 +02:00 |
Serhiy Storchaka
|
a3712a9a6c
|
Issue #5700: io.FileIO() called flush() after closing the file.
flush() was not called in close() if closefd=False.
|
2015-02-21 00:35:09 +02:00 |
Serhiy Storchaka
|
7065f376e0
|
Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
differs from file system encoding (e.g. on Mac OS).
|
2015-02-20 23:47:09 +02:00 |
Serhiy Storchaka
|
5e3d7a401d
|
Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encoding
differs from file system encoding (e.g. on Mac OS).
|
2015-02-20 23:46:06 +02:00 |
Benjamin Peterson
|
869311dd97
|
merge 3.4 (#23481)
|
2015-02-19 17:58:19 -05:00 |
Benjamin Peterson
|
500af332f4
|
remove rc4 from the default client ciphers (closes #23481)
|
2015-02-19 17:57:08 -05:00 |
Benjamin Peterson
|
9dd25dd693
|
merge 3.4
|
2015-02-18 08:55:59 -05:00 |
Benjamin Peterson
|
76e37b1b8a
|
merge 3.3
|
2015-02-18 08:55:38 -05:00 |
Benjamin Peterson
|
03f8612562
|
merge 3.2
|
2015-02-18 08:54:22 -05:00 |
Benjamin Peterson
|
893cce921c
|
remove RPM, since it's unused and unmaintained
|
2015-02-18 08:52:46 -05:00 |
Benjamin Peterson
|
77c041ba64
|
merge 3.4 (#21548)
|
2015-02-16 19:45:42 -05:00 |
Benjamin Peterson
|
54237f9fea
|
fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)
Patch by Yuyang Guo and Berker Peksag.
|
2015-02-16 19:45:01 -05:00 |
Serhiy Storchaka
|
23edd49e5b
|
Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
module. Original patch by Claudiu Popa.
|
2015-02-16 00:32:41 +02:00 |
Serhiy Storchaka
|
74eb8b2d1a
|
Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb
module. Original patch by Claudiu Popa.
|
2015-02-16 00:30:43 +02:00 |
Antoine Pitrou
|
c481bfb3f6
|
Issue #23239: ssl.match_hostname() now supports matching of IP addresses.
|
2015-02-15 18:12:20 +01:00 |
Antoine Pitrou
|
2d07b85585
|
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
Detected and fixed by Serhiy.
|
2015-02-15 18:06:54 +01:00 |
Antoine Pitrou
|
57fffd6f99
|
Issue #23146: Fix mishandling of absolute Windows paths with forward slashes in pathlib.
Detected and fixed by Serhiy.
|
2015-02-15 18:03:59 +01:00 |
Serhiy Storchaka
|
c86ca26d32
|
Issue #23096: Pickle representation of floats with protocol 0 now is the same
for both Python and C implementations.
|
2015-02-15 14:18:32 +02:00 |
Steve Dower
|
8dcc1a9f96
|
Issue #23437: Update NEWS and whatsnew/3.5
|
2015-02-14 12:07:59 -08:00 |
Serhiy Storchaka
|
a750ce3325
|
Issue #19105: pprint now more efficiently uses free space at the right.
|
2015-02-14 10:55:19 +02:00 |
Berker Peksag
|
8089cd642f
|
Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser.
Patch by Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson.
|
2015-02-14 01:39:17 +02:00 |
Berker Peksag
|
0fe6325acf
|
Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode.
|
2015-02-13 21:02:12 +02:00 |
Antoine Pitrou
|
8b62bbf2e5
|
Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the resulting executable faster.
|
2015-02-11 19:41:01 +01:00 |
Antoine Pitrou
|
3d6c784371
|
Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the resulting executable faster.
|
2015-02-11 19:39:16 +01:00 |
Serhiy Storchaka
|
c1efe5f039
|
Issue #23344: marshal.dumps() is now 20-25% faster on average.
|
2015-02-11 15:54:54 +02:00 |
Serhiy Storchaka
|
ce921c62cc
|
Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on
average.
|
2015-02-11 15:53:31 +02:00 |
Serhiy Storchaka
|
4bdcfce512
|
Issue #23421: Fixed compression in tarfile CLI. Patch by wdv4758h.
|
2015-02-10 08:47:10 +02:00 |
Serhiy Storchaka
|
832dd5f0d6
|
Issue #23421: Fixed compression in tarfile CLI. Patch by wdv4758h.
|
2015-02-10 08:45:53 +02:00 |
Benjamin Peterson
|
5ef01e9b93
|
merge 3.4 (#23361)
|
2015-02-09 21:00:00 -05:00 |
Benjamin Peterson
|
22ef9f722e
|
merge 3.3 (#23361)
|
2015-02-09 20:58:52 -05:00 |
Benjamin Peterson
|
8ce6806498
|
add overflow checking (closes #23361)
|
2015-02-09 20:58:12 -05:00 |
Vinay Sajip
|
365701add9
|
Added respect_handler_level to QueueListener.
|
2015-02-09 19:49:00 +00:00 |
Larry Hastings
|
f77232b04e
|
Post-release updates for Python 3.5.0a1.
|
2015-02-08 14:07:14 -08:00 |
Larry Hastings
|
833d1925c7
|
Post-release updates for Python 3.4.3rc1.
|
2015-02-08 14:04:36 -08:00 |
Larry Hastings
|
b06f142f5f
|
Release bump for 3.5.0a1.
|
2015-02-07 16:00:55 -08:00 |
Larry Hastings
|
e5529063b2
|
Version bump for 3.4.3rc1.
|
2015-02-07 16:00:45 -08:00 |
Charles-François Natali
|
6e6c59b508
|
Issue #23285: PEP 475 -- Retry system calls failing with EINTR.
|
2015-02-07 13:27:50 +00:00 |
Barry Warsaw
|
1670613d48
|
Issue #23399: pyvenv creates relative symlinks where possible.
|
2015-02-06 11:58:06 -05:00 |
Barry Warsaw
|
581c29f8fe
|
Issue #23399: pyvenv creates relative symlinks where possible.
|
2015-02-06 11:23:58 -05:00 |
Berker Peksag
|
bf5e9604cc
|
Issue #20289: cgi.FieldStorage() now supports the context management protocol.
|
2015-02-06 10:21:37 +02:00 |
Serhiy Storchaka
|
6cfb61f163
|
Issue #23392: Added tests for marshal C API that works with FILE*.
|
2015-02-06 09:00:44 +02:00 |
Serhiy Storchaka
|
b51813403f
|
Issue #23392: Added tests for marshal C API that works with FILE*.
|
2015-02-06 08:58:56 +02:00 |