Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
928b3ff Issue #23400: Add notes about the sem_open support of the host OS to "Pipes and Queues" and "Synchronization between processes" subsections. Patch by Davin Potts. 08 April 2015, 15:12:53 UTC
ce29e87 actually ssl3 is just completely broken 08 April 2015, 15:11:00 UTC
c7d957f Update pip to 6.1.1 07 April 2015, 11:09:06 UTC
9a46eb7 ssue #23881: ftp://gatekeeper.research.compaq.com/ and ftp://ftp.debian.org/ are down, don't use anymore in test_urllib2net ftp.kernel.org is also slow or down, so reuse the same FTP servers than Python 3.4 and 3.5: use ftp.debian.org instead. 07 April 2015, 10:59:14 UTC
5ab1c01 Issue #23881: urllib.ftpwrapper constructor now closes the socket if the FTP connection failed. 07 April 2015, 10:47:57 UTC
d27bcbd Upgrade pip to 6.1.0 and setuptools to 15.0 07 April 2015, 05:32:24 UTC
62b109d Issue #23458: Remove test_os.test_urandom_fd_non_inheritable() os.urandom() only tries to make the os.random() file descriptor non inheritable, but there is no guarantee. The test fails on too many operating systems: Windows, OS X 10.5, OpenIndiana. This issue is correctly fixed in Python 3.4 with the PEP 446. Upgrade to Python 3.4 is you need stronger guarantees. 06 April 2015, 21:39:47 UTC
9c5a8d4 remove extra arguments in arg parsing format codes (closes #23875) 06 April 2015, 17:05:22 UTC
f29bc70 Issue #15133: _tkinter.tkapp.getboolean() now supports long and Tcl_Obj and always returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, long, str, unicode, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool. 04 April 2015, 09:42:25 UTC
baa6efd Open files in binary mode to avoid newlines transformation. 04 April 2015, 07:36:15 UTC
37943b0 Issue #23338: Fixed formatting ctypes error messages on Cygwin. Patch by Makoto Kato. 04 April 2015, 07:05:35 UTC
fb0517c Issue #23825: Fixed test_idle under -OO. 04 April 2015, 06:47:18 UTC
c811328 Escaped backslashes in docstrings. 03 April 2015, 15:12:32 UTC
023de86 use rc rather than beta 03 April 2015, 01:36:42 UTC
aff77f3 Issue #10590: Added tests for xml.sax.parse() and xml.sax.parseString(). 02 April 2015, 20:05:23 UTC
e9d4dc1 Issue #2175: Added tests for xml.sax.saxutils.prepare_input_source(). Made test XML files non-ASCII. 02 April 2015, 17:55:46 UTC
61ad42e Issue #16840: Fixed test_tcl for Tcl < 8.5. 02 April 2015, 17:06:48 UTC
e8ae047 Issue #21526: Skip test_booleans on Tcl < 8.5. 02 April 2015, 16:57:52 UTC
c77c5b5 Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and arbitrary precision integers added in Tcl 8.5. 02 April 2015, 15:46:30 UTC
31c7e4f Issue #23834: Fix socket.sendto(), use the C long type to store the result of sendto() instead of the C int type. 02 April 2015, 15:19:17 UTC
320bec1 - Set PY_VERSION to "2.7.10b0", PY_MICRO_VERSION to 10 and PY_RELEASE_LEVEL to PY_RELEASE_LEVEL_BETA. 02 April 2015, 13:59:13 UTC
91398f8 Issue #21526: Fixed the test_booleans test for wantobjects = 0. 02 April 2015, 08:46:07 UTC
cba6b5d Issue #21526: Tkinter now supports new boolean type in Tcl 8.5. 02 April 2015, 07:35:57 UTC
df11d4c replace 512 bit dh key with a 2014 bit one (closes #23844) Patch by Cédric Krier. 02 April 2015, 04:04:06 UTC
a5a44ab remove assignment in conditional 01 April 2015, 15:16:40 UTC
43b4959 Issue #23838: linecache now clears the cache and returns an empty result on MemoryError. 01 April 2015, 13:53:53 UTC
bd8c629 Issue #23799: Added test.test_support.start_threads() for running and cleaning up multiple threads. 01 April 2015, 09:56:39 UTC
2baaba8 Issue #23729: Improve docs for ElementTree namespace parsing 31 March 2015, 03:46:54 UTC
e993245 Issue #23115: os.urandom() now releases the GIL when the getentropy() is used (OpenBSD 5.6+). 30 March 2015, 09:22:13 UTC
96d8012 Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. 30 March 2015, 07:00:49 UTC
07e03ab Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of MemoryError. 30 March 2015, 06:53:06 UTC
aa64c46 Issue #23781: Add private helper function _PyErr_ReplaceException() that corresponds _PyErr_ChainExceptions() in Python 3 to help porting patches from Python 3. 30 March 2015, 06:48:42 UTC
d06c201 Issue #14904: Made test_unicode_repr_oflw to use less memory. Corrected memory requirements in other bigmem tests. 30 March 2015, 06:27:20 UTC
7d49065 Issue #22390: Fix test_gzip if unicode filename doesn't work 30 March 2015, 00:20:37 UTC
7b00364 Issue #22390: Fix test_gzip, remove temporary file 29 March 2015, 23:32:42 UTC
ffaa031 Issue #22390: Fix test_pdb to remove created bar.pyc file 29 March 2015, 23:24:57 UTC
01eaf50 Issue #22390: Fix test_aifc to remove the created file 29 March 2015, 23:16:17 UTC
ac0d189 Issue #22390: Fix typo in regrtest, support => test_support 29 March 2015, 23:07:29 UTC
c0a2f2b Issue #22390: test.regrtest now emits a warning if temporary files or directories are left after running a test. 29 March 2015, 22:27:44 UTC
53ea162 Make some tests more frienly to MemoryError. Free memory, unlock hanging threads. 28 March 2015, 18:38:48 UTC
582265f Issue #23445: Fix test_gdb.python_is_optimized() for CFLAGS=-Og -Og does not optimize the C code, it's just "fast debugging". 27 March 2015, 14:44:13 UTC
837d760 Check that failed writerow() doesn't produce change a file. 25 March 2015, 17:15:56 UTC
53b542f Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes. 25 March 2015, 14:39:58 UTC
f95a57f Issue #21802: The reader in BufferedRWPair now is closed even when closing writer failed in BufferedRWPair.close(). 24 March 2015, 21:23:42 UTC
40fd0e8 Issue #23671: string.Template now allows to specify the "self" parameter as keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments. 24 March 2015, 20:27:50 UTC
d07ec7b Issue #23583: Fixed writing unicode to standard output stream in IDLE. Added tests for standard IO streams in IDLE. 24 March 2015, 17:45:45 UTC
ac5164d Issue #23583: Fixed writing unicode to standard output stream in IDLE. Added tests for standard IO streams in IDLE. 24 March 2015, 17:42:15 UTC
1afb9da #23512: list non-essential built-in functions after the table. Patch by Carlo Beccarini. 24 March 2015, 11:44:58 UTC
bc1fda3 #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. 24 March 2015, 10:42:41 UTC
f689f10 Issue #21560: An attempt to write a data of wrong type no longer cause GzipFile corruption. Original patch by Wolfgang Maier. 23 March 2015, 13:25:18 UTC
510a6e9 Issue 23729: Document ElementTree namespace handling and fix an omission in the XPATH predicate table. 22 March 2015, 22:31:28 UTC
836c824 #23647: Increase imaplib's MAXLINE to accommodate modern mailbox sizes. 22 March 2015, 20:17:11 UTC
b4b000f #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. Some http servers will reject PUT, POST, and PATCH requests if they do not have a Content-Length header. Patch by James Rutherford. 22 March 2015, 19:15:44 UTC
2936858 clarify behavior of shutil.move when destination exists (closes #22933) Patch by Mike Short. 22 March 2015, 14:11:54 UTC
ce16424 Issue #22079: Py3k warning now is issued in PyType_Ready() instead of raising TypeError when statically allocated type subclasses dynamically allocated type 22 March 2015, 07:45:35 UTC
9f696c9 Issue #23075: Whether __builtins__ is a module or a dict is undefined in CPython. Use the reliably well defined `import __builtin__` instead. Patch by Alex Gaynor. 21 March 2015, 20:04:42 UTC
a8e8f7e Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a. 19 March 2015, 23:19:27 UTC
8d3f505 Fixed Misc/NEWS entry for issue #23136. 19 March 2015, 17:52:50 UTC
d54c2e3 Issue #23136: _strptime now uniformly handles all days in week 0, including Jan 30 of previous year. Based on patch by Jim Carroll. 19 March 2015, 17:13:25 UTC
6a74a51 wrap properly 19 March 2015, 02:35:38 UTC
9e52735 Issue #23458: Skip test_urandom_fd_non_inheritable on OS X 10.4 since FD_CLOEXEC is not supported there. 17 March 2015, 22:18:07 UTC
4f3395f Fix up PCbuild/readme.txt a bit. Removes an incorrect assertion (that the build script will choose the latest OpenSSL sources it can find), fixes NASM's homepage, and rewords the section about NASM to make it more clear that you don't have to install your own. 15 January 2015, 17:16:51 UTC
596b751 Issue #22585, #23115: make URandomFDTests test case actually run 17 March 2015, 11:34:46 UTC
5151838 versionchanged for rc4 removal (closes #23679) 16 March 2015, 17:43:38 UTC
3d15b5d Use non-zero and non-last positions in error handler tests. 16 March 2015, 06:29:35 UTC
2792389 Increased coverage of standard codec error handlers. 15 March 2015, 21:41:10 UTC
9872ad4 Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. default 15 March 2015, 03:20:36 UTC
251aede Fix minor docs markup errors. 14 March 2015, 19:32:41 UTC
dbbc07c the default is sys.maxsize not sys.maxint (closes #23645) 13 March 2015, 19:32:31 UTC
f249671 Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar. Patch by Demian Brecht. 13 March 2015, 07:04:34 UTC
7c26be5 Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. 13 March 2015, 06:31:34 UTC
59bdf63 Issue #22928: Disabled HTTP header injections in httplib. Original patch by Demian Brecht. 12 March 2015, 09:12:51 UTC
205408d Issue #23615: Module tarfile is now can be reloaded with imp.reload(). 11 March 2015, 15:31:59 UTC
ca1fb3e close files explicit (closes #21610) Patch by mattip. 11 March 2015, 00:06:18 UTC
323ab6d Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. 10 March 2015, 21:32:00 UTC
32608c1 Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls 10 March 2015, 20:19:17 UTC
0acf4ad Issue #23617: Correct plurals typo noted by Kentrell Johnson. 09 March 2015, 08:54:25 UTC
81bec81 replace Amazon links in the documentation (closes #23579) Patch by Sayan Chowdhury. 07 March 2015, 14:34:16 UTC
233e698 Issue #22853: Fixed a deadlock when use multiprocessing.Queue at import time. Patch by Florian Finkernagel and Davin Potts. 06 March 2015, 20:17:25 UTC
f050648 fix potential refleak in PyFloat_AsDouble (closes #23590) 06 March 2015, 14:08:44 UTC
8c51fed Issue #23593: fix Misc/NEWS entries 06 March 2015, 01:43:26 UTC
59439d8 Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2. 06 March 2015, 01:32:28 UTC
b10d50e use _import_symbols to import VERIFY_* constants 05 March 2015, 04:18:57 UTC
d86699f adjust test_crl_check for trusted first being default 05 March 2015, 04:18:48 UTC
72ef961 expose X509_V_FLAG_TRUSTED_FIRST 05 March 2015, 03:49:41 UTC
b1ebba5 enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476) 05 March 2015, 03:11:12 UTC
34c8d98 Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SSL layer but the underlying connection hasn't been closed. 04 March 2015, 19:51:55 UTC
c620c11 Issue #23504: Added an __all__ to the types module. 04 March 2015, 07:42:59 UTC
b027c6c fix possible overflow bugs in unicodedata (closes #23367) 02 March 2015, 16:17:05 UTC
b198ad9 wrap everything at 80 chars 02 March 2015, 14:34:31 UTC
f0b630b Added more tests for urllib utility functions. These functions are not documented but used in third-party code. 02 March 2015, 14:31:57 UTC
f4875d5 remove mention of Python 2.2 and 2.3 02 March 2015, 01:59:22 UTC
2b8c00d Fixed pydoc tests when run with -OO. 01 March 2015, 13:31:21 UTC
082a960 fix merge_collapse to actually maintain the invariant it purports to (closes #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" 25 February 2015, 15:12:26 UTC
ebcbbfb Issue #23458: skip test_os.test_urandom_fd_non_inheritable() on Windows 24 February 2015, 14:12:57 UTC
e0a0bd6 Issue #23458: On POSIX, the file descriptor kept open by os.urandom() is now set to non inheritable 24 February 2015, 13:30:43 UTC
0e4da40 Issue #23499: Fix grammar error noticed by SilentGhost 23 February 2015, 00:08:23 UTC
437d535 Broke reference loops in tests added in issue #5700. 22 February 2015, 22:28:38 UTC
cc49aa1 Issue #6639: Module-level turtle functions no longer raise TclError after closing the window. 22 February 2015, 15:22:53 UTC
b8285d9 Issue #22113: struct.pack_into() now supports new buffer protocol (in particular accepts writable memoryview). 21 February 2015, 17:51:17 UTC
back to top