summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23593: fix Misc/NEWS entriesNed Deily2015-03-061-1/+1
|
* Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2.Ned Deily2015-03-063-15/+19
|
* use _import_symbols to import VERIFY_* constantsBenjamin Peterson2015-03-051-2/+1
|
* adjust test_crl_check for trusted first being defaultBenjamin Peterson2015-03-051-1/+2
|
* expose X509_V_FLAG_TRUSTED_FIRSTBenjamin Peterson2015-03-053-5/+18
|
* enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)Benjamin Peterson2015-03-052-0/+12
|
* Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the ↵Antoine Pitrou2015-03-042-20/+3
| | | | SSL layer but the underlying connection hasn't been closed.
* Issue #23504: Added an __all__ to the types module.Serhiy Storchaka2015-03-042-0/+4
|
* fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-022-1/+10
|
* wrap everything at 80 charsBenjamin Peterson2015-03-021-76/+78
|
* Added more tests for urllib utility functions.Serhiy Storchaka2015-03-021-13/+103
| | | | These functions are not documented but used in third-party code.
* remove mention of Python 2.2 and 2.3Benjamin Peterson2015-03-021-6/+5
|
* Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+2
|
* fix merge_collapse to actually maintain the invariant it purports to (closes ↵Benjamin Peterson2015-02-251-1/+2
| | | | | | | | #23515) See de Gouw, Stijn and Rot, Jurriaan and de Boer, Frank S and Bubel, Richard and Hähnle, Reiner "OpenJDK’s java.utils.Collection.sort() is broken: The good, the bad and the worst case"
* Issue #23458: skip test_os.test_urandom_fd_non_inheritable() on WindowsVictor Stinner2015-02-241-0/+2
|
* Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is nowVictor Stinner2015-02-244-0/+72
| | | | set to non inheritable
* Issue #23499: Fix grammar error noticed by SilentGhostNed Deily2015-02-231-2/+2
|
* Broke reference loops in tests added in issue #5700.Serhiy Storchaka2015-02-221-0/+3
|
* Issue #6639: Module-level turtle functions no longer raise TclError afterSerhiy Storchaka2015-02-223-34/+39
| | | | closing the window.
* Issue #22113: struct.pack_into() now supports new buffer protocol (inSerhiy Storchaka2015-02-213-15/+29
| | | | particular accepts writable memoryview).
* Issues #814253, #9179: Warnings now are raised when group references andSerhiy Storchaka2015-02-214-6/+70
| | | | | conditional group references are used in lookbehind assertions in regular expressions.
* Issue #23215: Multibyte codecs with custom error handlers that ignores errorsSerhiy Storchaka2015-02-203-11/+25
| | | | | consumed too much memory and raised SystemError or MemoryError. Original patch by Aleksi Torhamo.
* Issue #5700: io.FileIO() called flush() after closing the file.Serhiy Storchaka2015-02-203-9/+58
| | | | flush() was not called in close() if closefd=False.
* Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with emptyBerker Peksag2015-02-203-2/+34
| | | | | | docstrings. Initial patch by Yuyang Guo.
* Fix typo pointed out on docs@ by Yaniv SayehZachary Ware2015-02-201-1/+1
|
* remove rc4 from the default client ciphers (closes #23481)Benjamin Peterson2015-02-192-4/+4
|
* remove RPM file, which is unused and unmaintainedBenjamin Peterson2015-02-183-407/+0
|
* Issue #23474: Enhanced locale testing.Serhiy Storchaka2015-02-182-5/+47
|
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-165-15/+25
| | | | overflows. Added few missed PyErr_NoMemory().
* Issue #23115: Fixed compilation on OpenBSD (Py_MIN is not defined in 2.7).Serhiy Storchaka2015-02-161-1/+1
|
* Merge headsSerhiy Storchaka2015-02-153-6/+9
|\
| * Backed out changeset 7d2018774925Serhiy Storchaka2015-02-153-6/+9
| |
* | Issue #22885: Fixed arbitrary code execution vulnerability in the dumbdbmSerhiy Storchaka2015-02-153-1/+13
|/ | | | module. Original patch by Claudiu Popa.
* Use os.devnull instead of hardcoded '/dev/null'.Serhiy Storchaka2015-02-153-9/+6
|
* Issue #21934: test_file2k no longer create regular file /dev/full on OpenBSDSerhiy Storchaka2015-02-151-8/+14
| | | | | when run as root. Extended testing with /dev/full. Based on patch by Daniel Dickman.
* Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+6
| | | | and email.test.
* Issue #22844: Fized test_gdb failure on Debian Wheezy for Z.Serhiy Storchaka2015-02-141-0/+2
| | | | Patch by David Edelsohn.
* avoid reading unallocated memory when argc == 0 (closes #22633)Benjamin Peterson2015-02-141-1/+2
|
* Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings inSerhiy Storchaka2015-02-134-10/+29
| | | | the multiprocessing module.
* Issue #21840: Fixed a typo.Serhiy Storchaka2015-02-131-1/+1
|
* Issue #21840: Fixed expanding unicode variables of form $var inSerhiy Storchaka2015-02-1310-23/+52
| | | | | posixpath.expandvars(). Fixed all os.path implementations on unicode-disabled builds.
* Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-063-0/+233
|
* Issue #23881: Only use entry-values with gdb 7.4 in tests.Serhiy Storchaka2015-02-061-8/+10
| | | | Fixes a regression in issue #22765. Patch by Vinson Lee.
* Fix missing :ref: for idle in doc build.Ned Deily2015-02-061-3/+3
|
* Issue #23212: Update OS X installer build OpenSSL to 1.0.1l.Ned Deily2015-02-062-4/+4
| | | | (currently only used for builds with <= 10.5 deployment targets)
* Issue #18982: Fixed newlines in calendar CLI tests on Windows.Serhiy Storchaka2015-02-051-7/+10
|
* Issue #18982: Add tests for CLI of the calendar module.Serhiy Storchaka2015-02-052-3/+136
|
* Issue #23345: Prevent test_ssl failures with large OpenSSL patch levelNed Deily2015-02-052-1/+4
| | | | values (like 0.9.8zc).
* remove parenthesis from print statement (closes #23396)Benjamin Peterson2015-02-051-1/+1
|
* Update pip to 6.0.8Donald Stufft2015-02-052-1/+1
|