- 08 Jan, 2014 1 commit
-
-
Gregory P. Smith authored
zip_searchorder scanning loop in get_module_code(). [already done in 3.3 and 3.4]
-
- 07 Jan, 2014 2 commits
-
-
Serhiy Storchaka authored
* 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.
-
Gregory P. Smith authored
posix module ImportError cause the nt module import to fail.
-
- 06 Jan, 2014 3 commits
-
-
Gregory P. Smith authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
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.
-
- 05 Jan, 2014 2 commits
-
-
R David Murray authored
-
R David Murray authored
Patch by Akira Kitada.
-
- 03 Jan, 2014 2 commits
-
-
R David Murray authored
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.
-
R David Murray authored
-
- 02 Jan, 2014 1 commit
-
-
R David Murray authored
-
- 01 Jan, 2014 2 commits
-
-
Ned Deily authored
-
Benjamin Peterson authored
-
- 28 Dec, 2013 3 commits
-
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data.
-
Serhiy Storchaka authored
array.fromfile() works only with file objects, not io.FileIO instances.
-
- 26 Dec, 2013 4 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
R David Murray authored
Patch by Gennadiy Zlobin.
-
- 25 Dec, 2013 4 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
methods.
-
Serhiy Storchaka authored
-
- 24 Dec, 2013 1 commit
-
-
Serhiy Storchaka authored
-
- 23 Dec, 2013 2 commits
-
-
Serhiy Storchaka authored
-
Benjamin Peterson authored
-
- 22 Dec, 2013 2 commits
-
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
- 21 Dec, 2013 1 commit
-
-
Serhiy Storchaka authored
the uncompress buffer and read() goes through more than one readbuffer. This is partial backport of changeset 028e8e0b03e8.
-
- 20 Dec, 2013 1 commit
-
-
Serhiy Storchaka authored
from X.org distribution using makelocalealias.py.
-
- 19 Dec, 2013 7 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Zachary Ware authored
Initial patch by Ajitesh Gupta.
-
Serhiy Storchaka authored
locale encodings with hyphens.
-
Victor Stinner authored
(wrong type).
-
Serhiy Storchaka authored
quotechar fields. Original patch by Vajrasky Kok.
-
Vinay Sajip authored
-
- 18 Dec, 2013 2 commits
-
-
Benjamin Peterson authored
-
Gregory P. Smith authored
-