https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
68b5799 close 3.1 15 October 2014, 21:52:42 UTC
ca343d8 fix poor spelling 14 April 2014, 16:15:28 UTC
447a386 disallow a negative idx parameter 14 April 2014, 15:45:21 UTC
17f323d in scan_once, prevent the reading of arbitrary memory when passed a negative index Bug reported by Guido Vranken. 14 April 2014, 02:10:38 UTC
4a282e1 use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896) 12 March 2014, 23:05:53 UTC
388f752 Issue #20246: Fix test failures on FreeBSD. Patch by Ryan Smith-Roberts. 21 January 2014, 21:58:40 UTC
1aa3771 open retrieved file in binary mode, since it's now compressed 20 February 2014, 03:56:35 UTC
ad1f64c update logo url (#20695) 20 February 2014, 03:55:16 UTC
f60a58c complain when nbytes > buflen to fix possible buffer overflow (closes #20246) 14 January 2014, 04:06:14 UTC
3e0298f complain when nbytes > buflen to fix possible buffer overflow (closes #20246) 14 January 2014, 03:59:38 UTC
0d8056c Fix typo. Pointed out by Finn Ellis on docs@. 14 January 2014, 02:38:17 UTC
88c6e17 #20236: Fix sphinx markup. 13 January 2014, 18:54:54 UTC
9c1e990 Backported test for the open of non-existent tarfile. 13 January 2014, 17:08:51 UTC
d262bbc Fixed typo. 13 January 2014, 12:22:45 UTC
b1fa2cc Issue #19082: Working SimpleXMLRPCServer and xmlrpclib examples, both in modules and documentation. 13 January 2014, 00:04:08 UTC
c2c59f5 Issue #20138: Backport tests for handling non-ASCII URLs in the wsgiref.application_uri() and wsgiref.request_uri() functions. 12 January 2014, 10:11:47 UTC
3dbb1e7 Adding test coverage for cgi.FieldStorage based on the scenario mentioned in issue #19097 12 January 2014, 06:16:55 UTC
280cb18 tkinter.Text.debug() now always returns 0/1. Fixed regression inroduced in issue #6157. 11 January 2014, 11:12:58 UTC
d9a4aca Try to fix some ttk tests. Error messages were changed in 8.6b3. 10 January 2014, 22:09:50 UTC
043fefd Fixed test_tempfilepager in test_pydoc on Windows. Filename such as r'c:\users\db3l\appdata\local\temp\tmph3vkvf' contains '\t' which is interpreted by ast.literal_eval() as a tabulation. 10 January 2014, 20:43:03 UTC
d3e4ddc Issue #20086: Output more details when test_getsetlocale_issue1813 is failed. 10 January 2014, 13:34:51 UTC
fabb279 Issue #19804: The test_find_mac test in test_uuid is now skipped if the ifconfig executable is not available. 10 January 2014, 13:05:27 UTC
333a889 Issue #19886: Use better estimated memory requirements for bigmem tests. Incorrect requirements can cause memory swapping. 10 January 2014, 11:36:56 UTC
2ab50dc Issue #13107: argparse and optparse no longer raises an exception when output a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni. 09 January 2014, 21:13:48 UTC
65f2fdc Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. 09 January 2014, 18:52:12 UTC
7e44cc3 clear zip stat cache after each ref leak run 09 January 2014, 17:10:30 UTC
fada5ad fix zipimport ref leak 09 January 2014, 15:36:10 UTC
7077296 Fix verb tense. 08 January 2014, 23:08:37 UTC
070e9db cleanup for the issue 19081 fix - pull the file open and close outside of the zip_searchorder scanning loop in get_module_code(). [already done in 3.3 and 3.4] 08 January 2014, 02:39:48 UTC
90ad6b7 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 _stringify() for non-ASCII strings. * 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:32:58 UTC
a25fd77 Should fix the issue19081 fix on Windows. Don't let the previous posix module ImportError cause the nt module import to fail. 07 January 2014, 09:11:09 UTC
f274c20 normalize whitespace from prior issue19081 fix commit. 06 January 2014, 17:51:32 UTC
c0edf36 news entry for issue19081 fix. 06 January 2014, 17:50:19 UTC
30cea9a Fixes issue19081: When a zipimport .zip file in sys.path being imported from is modified during the lifetime of the Python process after zipimport has already opened and cached the zip's table of contents it now fstat's the file after opening it upon every attempt to access anything within and will re-read the table of contents if the .zip file inode, size or mtime have changed. It would've been nicer to hold any .zip file used by zipimport open for the duration of the process but that would be more invasive and add an additional open file descriptor to all zipimport using processes. It also would likely not fix the problem on Windows due to different filesystem semantics. 06 January 2014, 17:46:46 UTC
979d2bb #1065986: add missing error handler in pydoc unicode fix. 05 January 2014, 22:14:08 UTC
083989e #1065986: Make pydoc handle unicode strings. Patch by Akira Kitada. 05 January 2014, 17:35:59 UTC
c0101bc #16039/#20118: temporarily skip failing imaplib SSL test. The fix the test is testing prevents a DOS attack, and the failure mode will also prevent the DOS attack, so for now skip the test. Either the test or the code does need fixing, however. 03 January 2014, 22:26:21 UTC
6d5a25f closes 16039: CVE-2013-1752: limit line length in imaplib readline calls. 03 January 2014, 18:59:22 UTC
a7e2c67 #17282: Document unittest.main defaultTest argument. 02 January 2014, 18:38:02 UTC
ffb3835 Update copyright dates in Mac plists. 01 January 2014, 21:03:24 UTC
cbb4447 update copyright year 01 January 2014, 04:02:22 UTC
fe2cb53 complain if the codec doesn't return unicode 28 December 2013, 16:33:58 UTC
0317e73 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
bc2aa25 Fixed the wave module testing on big-endian platforms. array.fromfile() works only with file objects, not io.FileIO instances. 28 December 2013, 08:18:44 UTC
98e8073 Issue #20027: Fixed locale aliases for devanagari locales. 26 December 2013, 19:20:46 UTC
12989af Backported tests for Tkinter variables. 26 December 2013, 18:08:34 UTC
7af5524 Issue #20067: Tkinter variables now work when wantobjects is false. 26 December 2013, 18:05:53 UTC
082a606 #20063: Remove inaccurate/confusing statement about support of 'pop' method. Patch by Gennadiy Zlobin. 26 December 2013, 03:26:59 UTC
19d2c5b test_debug in test_tkinter/test_text no longer fails when wantobjects is false. 25 December 2013, 15:35:11 UTC
830143c Issue #19320: test_tcl no longer fails when wantobjects is false. 25 December 2013, 15:28:50 UTC
c372c7f Issue #19020: Tkinter now uses splitlist() instead of split() in configure methods. 25 December 2013, 14:35:20 UTC
83676a9 Issue #20058: sys.stdin.readline() in IDLE now always returns only one line. 25 December 2013, 12:24:17 UTC
28085e5 Removed spaces before colons and semicolons. 24 December 2013, 09:04:06 UTC
27ec885 Removed spaces before commas and periods. 23 December 2013, 16:19:34 UTC
5ea6cf8 update Barry's email (closes #19563) 23 December 2013, 01:45:12 UTC
f775441 s/lightweight/minimal/, as per issue #11379. 22 December 2013, 00:57:01 UTC
241fbe9 Issue #12226: HTTPS is now used by default when connecting to PyPI. 22 December 2013, 00:35:53 UTC
76f2778 Issue #20048: Fixed ZipExtFile.peek() when it is called on the boundary of the uncompress buffer and read() goes through more than one readbuffer. This is partial backport of changeset 028e8e0b03e8. 21 December 2013, 21:51:15 UTC
ec14271 Issue #20034: Updated alias mapping to most recent locale.alias file from X.org distribution using makelocalealias.py. 20 December 2013, 16:22:38 UTC
964feaf Merge heads 19 December 2013, 20:31:23 UTC
530dd84 Don't use sebTest() in tests for issue #5815. 19 December 2013, 20:28:25 UTC
00fdee5 Issue #19683: Removed empty tests from test_minidom. Initial patch by Ajitesh Gupta. 19 December 2013, 19:44:19 UTC
5e00454 Issue #5815: Fixed support for locales with modifiers. Fixed support for locale encodings with hyphens. 19 December 2013, 19:21:06 UTC
44c0559 Issue #20026: Fix the sqlite module to handle correctly invalid isolation level (wrong type). 19 December 2013, 15:44:48 UTC
815701b Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and quotechar fields. Original patch by Vajrasky Kok. 19 December 2013, 14:26:56 UTC
2d7dad3 Issue #19902: Added list of logging levels. 19 December 2013, 11:42:18 UTC
ebac7b5 update url to spec (closes #20018) 18 December 2013, 21:36:34 UTC
4effad5 remove trailing spaces. 18 December 2013, 19:25:26 UTC
2de7f8d Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. 18 December 2013, 18:18:36 UTC
e8409c1 Issue #19492: Silently skipped distutils tests now reported as skipped. 18 December 2013, 14:45:37 UTC
a5a72a8 #19855: uuid.get_node now looks on the PATH for executables on unix. Patch by Serhiy Storchaka. 18 December 2013, 02:27:56 UTC
e388e62 Issue #20006: Fix sporadic failures in test_weakset. 17 December 2013, 23:28:36 UTC
d307f35 Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. Original patch by Simon Sapin. 17 December 2013, 19:49:48 UTC
dda8e13 20004: Note that the setter in csv.DictReader is broken. This is a comment in the code because only someone reading the code would try setting fieldnames to None in the first place... 17 December 2013, 17:09:46 UTC
3b98212 Circumventing a bug in glibc (issue #17976). Patch by Jaakko Moisio. 17 December 2013, 15:32:20 UTC
81cfe02 Issue #16404: Add checks for return value of PyInt_FromLong() in sys.getwindowsversion() and ossaudiodev.setparameters(). Reported by Ned Batchelder. 17 December 2013, 13:09:45 UTC
c8108c4 Fixed leak in sys.flags initialization. 17 December 2013, 12:59:29 UTC
0086b4b Skip test for issue #17976 if /dev/null is not available. 17 December 2013, 12:53:32 UTC
d700878 Issue #17976: Fixed potential problem with file.write() not detecting IO error by inspecting the return value of fwrite(). Based on patches by Jaakko Moisio and test by Victor Stinner. 17 December 2013, 12:40:06 UTC
f51d0d3 Removed old implementation of ntpath.splitunc() (issue #19912). 16 December 2013, 16:43:00 UTC
81bb3bb 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, 14:58:10 UTC
fc71f1b Merge heads 16 December 2013, 13:16:11 UTC
dce0260 Issue #19912: Fixed numerous bugs in ntpath.splitunc(). * splitunc() no more returns illegal result for paths with redundant slashes. * splitunc() now correctly processes the u'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Added new tests for splitunc(). 16 December 2013, 13:15:29 UTC
04f33eb Issue #19965: Make sure that Python-ast.h is properly taken into account in the makefile. 15 December 2013, 18:07:44 UTC
24b6b2c Issue #19623: Fixed writing to unseekable files in the aifc module. Fixed writing 'ulaw' (lower case) compressed AIFC files. 14 December 2013, 18:34:33 UTC
fe1d83f Issue #17919: Fixed integer overflow in the eventmask parameter. 14 December 2013, 17:11:04 UTC
7fe8c66 #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. 14 December 2013, 10:42:29 UTC
4746fc7 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. 13 December 2013, 10:09:05 UTC
8b4e960 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:37:09 UTC
95e70d7 Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the fix to Issue #14635 in Python 2.7.4 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. 11 December 2013, 02:22:03 UTC
7af5e6e Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial shell window is present. (Original patch by Terry Reedy) 11 December 2013, 00:21:58 UTC
3f910f5 Issue #19572: Replace a return that shouldn't have been removed from test_os. This should fix the test_os failure on the AMD64 Windows 7 buildbot. 10 December 2013, 22:06:46 UTC
1f88781 Issue #19928: Fix test on Windows 10 December 2013, 20:14:28 UTC
58cee63 Issue #19572: More silently skipped tests explicitly skipped. 10 December 2013, 20:09:20 UTC
5b9f216 Skip test for #19878 on Windows. 10 December 2013, 16:23:00 UTC
81b2e1f #19943: fix typo noticed by Jakub Wilk. 10 December 2013, 12:05:46 UTC
2476dc1 Issue #19407: add Python Packaging User Guide notes The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs. 10 December 2013, 11:18:32 UTC
4c67cb4 Issue #19928: Implemented a test for repr() of cell objects. 10 December 2013, 08:20:11 UTC
351ca4a Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE no more hangs. 10 December 2013, 08:04:41 UTC
cdfe1b8 Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. 10 December 2013, 00:23:22 UTC
back to top