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

sort by:
Revision Author Date Message Commit Date
32c4915 Try to fix test_ssl failures on some buildbots 09 January 2014, 20:28:48 UTC
2f7c316 Remove conditional: it is useless at this point (OpenSSL headers are not yet included) 09 January 2014, 19:07:41 UTC
cd3d7ca Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. 09 January 2014, 19:02:20 UTC
1064a13 Do not reset the line number because we already set file position to correct value. (fixes error in patch for issue #18960) 09 January 2014, 18:12:49 UTC
50b82c7 clear zip stat cache after each ref leak run 09 January 2014, 17:10:30 UTC
768c16c Issue #18960: Fix bugs with Python source code encoding in the second line. * The first line of Python script could be executed twice when the source encoding (not equal to 'utf-8') was specified on the second line. * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. * As a consequence, 'python -x' works now again with files with the source encoding declarations specified on the second file, and can be used again to make Python batch files on Windows. * The tokenize module now ignore the source encoding declaration on the second line if the first line contains anything except a comment. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment. 09 January 2014, 16:36:09 UTC
21e7d4c fix zipimport ref leak 09 January 2014, 15:36:10 UTC
5ce3f10 Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPU consumption. 09 January 2014, 12:50:20 UTC
78ee328 Fix verb tense in base64 docs, and the phrasing of a news entry. 08 January 2014, 23:09:29 UTC
cd5ca6a Issue #20113: Fix test_posix on OpenIndiana 08 January 2014, 15:01:31 UTC
57ddf78 Issue #20113: os.readv() and os.writev() now raise an OSError exception on error instead of returning -1. 08 January 2014, 14:21:28 UTC
2bcbc14 Fixes Issue #19081: When a zipimport .zip file in sys.path being imported from is modified during the lifetime of the Python process after zipimport has already cached the zip's table of contents we detect this and recover rather than read bad data from the .zip (causing odd import errors). 08 January 2014, 02:30:07 UTC
a21acb5 Issue #20072: Fixed multiple errors in tkinter with wantobjects is False. * Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False. 07 January 2014, 17:27:42 UTC
0455c3f Whitespace. 04 January 2014, 12:03:48 UTC
8d805d7 Regenerate python34stub.def. 04 January 2014, 10:20:45 UTC
7476289 Issue #17432: Drop UCS2 from names of Unicode functions in python3.def. 04 January 2014, 09:01:42 UTC
002033e correct word for __annotations__ doc (closes #20110) Patch from Claudiu Popa. 02 January 2014, 22:47:50 UTC
12e930f #17282: Document unittest.main defaultTest argument. 02 January 2014, 18:37:26 UTC
3e6ab17 avoid parameter name clash (closes #20108) 02 January 2014, 18:24:08 UTC
3a990c6 remove brackets 02 January 2014, 18:22:30 UTC
487aedb Issue #20101: Allow test_monotonic to pass on Windows machines on which time.get_clock_info('monotonic').resolution == 0.015600099999999999 This is just a workaround pending a real resolution to #20101. 02 January 2014, 15:41:10 UTC
6a31b0f Issue #18829: Add tests for the csv module for invalid characters (delimiter, escapechar, quotechar) 02 January 2014, 11:53:13 UTC
5f8d485 parser: fix usage of Py_BuildValue() to build a parser error Fix typo: "os" format => "Os" 02 January 2014, 10:49:27 UTC
cb0613b Update copyright dates in Mac plists. 01 January 2014, 21:05:03 UTC
fa10ae0 update copyright year 01 January 2014, 04:02:22 UTC
3f48ac9 Issue #20055: Fix test_shutil under Windows with symlink privileges held. Patch by Vajrasky Kok. 01 January 2014, 01:50:45 UTC
b075cc0 Clarify the wording of a news entry. 31 December 2013, 22:33:47 UTC
340a692 str subclasses may have non-empty __slots__, bytes subclasses can't. 31 December 2013, 18:09:26 UTC
b6fac24 Backporing the fix from Issue #12692 29 December 2013, 01:36:18 UTC
3e86ba4 Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. 28 December 2013, 16:26:33 UTC
ecff5e5 #18116: backport fix to 3.3 since real-world failure mode demonstrated. In issue 20074 it was pointed out that getpass would fail with a traceback if stdin was, for example /dev/null, which is a non-unlikely scenario. Also backported the tests from issue 17484 as modified by issue 18116. (What I really did was copy getpass.py and test_getpass.py from their state on tip as of 17bd04fbf3d3). 27 December 2013, 16:24:32 UTC
5eb0153 Issue #20027: Fixed locale aliases for devanagari locales. 26 December 2013, 19:20:59 UTC
d97c01f Issue #20067: Tkinter variables now work when wantobjects is false. 26 December 2013, 18:06:05 UTC
e80e806 Issue #19938: Re-enabled test_bug_1333982 in test_dis, which had been disabled since 3.0 due to the changes in listcomp handling. 26 December 2013, 15:53:49 UTC
a1de906 test_debug in test_tkinter/test_text no longer fails when wantobjects is false. 25 December 2013, 15:35:24 UTC
cc4290b Issue #19320: test_tcl no longer fails when wantobjects is false. 25 December 2013, 15:29:01 UTC
848972c Issue #19020: Tkinter now uses splitlist() instead of split() in configure methods. 25 December 2013, 14:35:38 UTC
0fd5576 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. 25 December 2013, 12:24:35 UTC
f47036c Removed spaces before colons and semicolons. 24 December 2013, 09:04:36 UTC
55c6cc4 Issue #20033: makelocalealias.py now works with non-ASCII locales and produces the same result as in 2.x. 23 December 2013, 16:56:08 UTC
a4d170d Removed spaces before commas and periods. 23 December 2013, 16:20:51 UTC
eaedaec update Barry's email (#19563) 23 December 2013, 01:45:38 UTC
e62a404 Fix bootstrap issue by importing the cgi module lazily 22 December 2013, 18:37:17 UTC
335a512 Fix TypeError on "setup.py upload --show-response". 22 December 2013, 17:13:51 UTC
f20ea13 s/lightweight/minimal/, as per issue #11379. 22 December 2013, 00:57:01 UTC
e8d07a9 Issue #12226: HTTPS is now used by default when connecting to PyPI. 22 December 2013, 00:45:42 UTC
f60b7df Issue #12226: HTTPS is now used by default when connecting to PyPI. 22 December 2013, 00:35:53 UTC
6783487 Fix urllib.request.build_opener mocking in test_distutils (should fix some random buildbot failures) 21 December 2013, 23:44:01 UTC
716b722 Issue #20045: Fix "setup.py register --list-classifiers". 21 December 2013, 21:57:56 UTC
492b989 Fix DeprecationWarnings in test suite 21 December 2013, 21:19:46 UTC
17c9326 Issue #18879: When a method is looked up on a temporary file, avoid closing the file before the method is possibly called. 21 December 2013, 21:14:56 UTC
bdce938 Update test.outstanding_bugs.py 20 December 2013, 19:25:07 UTC
715233c Issue #20034: Updated alias mapping to most recent locale.alias file from X.org distribution using makelocalealias.py. 20 December 2013, 16:23:26 UTC
bea3534 Don't use sebTest() in tests for issue #5815. 19 December 2013, 20:31:46 UTC
e36e8be Issue #19683: Removed empty tests from test_minidom. Patch by Ajitesh Gupta. 19 December 2013, 19:44:56 UTC
c8cc42e Issue #5815: Fixed support for locales with modifiers. Fixed support for locale encodings with hyphens. 19 December 2013, 19:21:25 UTC
1e81a39 Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a ValueError if num is negative (instead of raising a SystemError). 19 December 2013, 15:47:04 UTC
cb1f74e Issue #20026: Fix the sqlite module to handle correctly invalid isolation level (wrong type). 19 December 2013, 15:38:03 UTC
cac23a5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and quotechar fields. Original patch by Vajrasky Kok. 19 December 2013, 14:27:18 UTC
800e11b Issue #19902: Added list of logging levels. 19 December 2013, 11:50:24 UTC
ccedc22 update url to spec (closes #20018) 18 December 2013, 21:35:18 UTC
b1792d9 remove trailing spaces. 18 December 2013, 19:27:05 UTC
0bffca0 Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. 18 December 2013, 18:21:49 UTC
3c02ece Issue #19492: Silently skipped distutils tests now reported as skipped. 18 December 2013, 14:41:01 UTC
4be1e24 #19855: uuid.get_node now looks on the PATH for executables on unix. Patch by Serhiy Storchaka. 18 December 2013, 02:13:16 UTC
320b391 Issue #20006: Fix sporadic failures in test_weakset. 17 December 2013, 23:28:36 UTC
0c73fc0 Revert misled test change in f189da5bda26. 17 December 2013, 23:29:30 UTC
1c84ac1 Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. Original patch by Simon Sapin. 17 December 2013, 19:50:02 UTC
48d761e Issue #16404: Add checks for return value of PyLong_FromLong() in sys.getwindowsversion() and ossaudiodev.setparameters(). Reported by Ned Batchelder. 17 December 2013, 13:11:24 UTC
87a854d Fixed leak in sys.flags initialization. 17 December 2013, 12:59:42 UTC
1700788 Close #19999: tolerate coarse time when testing time.monotonic() on very busy/slow buildbot 16 December 2013, 21:36:50 UTC
de57074 Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns EWOULDBLOCK on Windows or VMs hosted on Windows. 16 December 2013, 20:15:44 UTC
1007432 Issue #19987: Re-write test_alias_fallback in test_winsound to have two acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure. 16 December 2013, 15:02:41 UTC
928b9e2 Merge heads 16 December 2013, 13:16:35 UTC
593568b Issue #19912: Fixed numerous bugs in ntpath.splitunc(). * splitunc() no more return illegal result for paths with redundant slashes. * splitunc() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Deprecation warnings now emitted for every use of splitunc(). * Added tests for splitunc(). 16 December 2013, 13:13:28 UTC
808d83d Merge. 16 December 2013, 12:49:19 UTC
3d7e115 Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). 16 December 2013, 12:34:55 UTC
e9b034b Issue #17919: add missing import of USHRT_MAX 16 December 2013, 12:27:16 UTC
e68a3ce Merge. 16 December 2013, 11:02:42 UTC
8a1d1e6 #19532: make compileall with no file/dir args respect -f and -q. Patch by Vajrasky Kok. 16 December 2013, 01:49:38 UTC
1f1ec12 Issue #19986: Avoid an incorrect warning of older gcc versions. 15 December 2013, 19:45:08 UTC
325a102 Merge. 15 December 2013, 18:12:07 UTC
46c686f Issue #19965: Make sure that Python-ast.h is properly taken into account in the makefile. 15 December 2013, 18:09:00 UTC
c836a28 Issue #17576: Removed deprecation warnings added in changeset 618cca51a27e. 14 December 2013, 19:07:09 UTC
84d28b4 Issue #19623: Fixed writing to unseekable files in the aifc module. 14 December 2013, 18:35:04 UTC
5da107a Issue #17919: Fixed integer overflow in the eventmask parameter. 14 December 2013, 17:12:02 UTC
01e5f80 Fix C++ header usage. This __STDC_LIMIT_MACROS scheme can still be subverted by including stdint.h before mpdecimal.h. In that case the only option left is to compile with -D_STDC_LIMIT_MACROS. 14 December 2013, 11:58:09 UTC
956040a #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. 14 December 2013, 10:42:29 UTC
fc06999 #19970: Fix some comment typos. Report and patch by Vajrasky Kok. 14 December 2013, 01:52:19 UTC
98620d8 Issue #19963: Document that importlib.import_module() will import parent packages automatically. 13 December 2013, 18:57:41 UTC
d913d9d #18036: update .pyc FAQ entry in light of PEP 3147. Initial patch by Phil Connell. 13 December 2013, 17:29:29 UTC
c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" argument is not in range [0; 255]. 13 December 2013, 11:14:44 UTC
3ad2d70 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. 13 December 2013, 10:08:01 UTC
258e4d3 Issue #14432: Fix compilation when thread support is disabled 13 December 2013, 01:30:12 UTC
1310510 Issue #14432: Generator now clears the borrowed reference to the thread state 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. 13 December 2013, 01:17:29 UTC
da12ada Do not discard const qualifier without a reason. 12 December 2013, 17:51:51 UTC
0f533ac Avoid UnicodeEncodeError by only printing ASCII. This fixes running test_decimal in verbose mode on Windows, which I broke in issue #19572. 12 December 2013, 16:32:16 UTC
bdbffd0 Filter namespaceobject's files properly in the pythoncore VS project. 11 December 2013, 23:12:34 UTC
36193e7 Issue #19828: Fixed test_site when the whole suite is run with -S. Also, cleaned up an unused import. 11 December 2013, 22:59:44 UTC
d5c4c74 #19063: partially fix set_payload handling of non-ASCII string input. This is a backward compatible partial fix, the complete fix requires raising an error instead of accepting the invalid input, so the real fix is only suitable for 3.4. 11 December 2013, 21:34:34 UTC
back to top