Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #17095: Fix Modules/Setup *shared* support. | Ned Deily | 2014-06-02 | 3 | -6/+21 |
| | | | | Original patch by Thomas Wouters. | ||||
* | Updated logging HOWTO section on optimization. | Vinay Sajip | 2014-06-01 | 1 | -0/+15 |
| | |||||
* | Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSD | Gregory P. Smith | 2014-06-01 | 1 | -0/+3 |
| | | | | when fdescfs is not mounted on /dev/fd. | ||||
* | Attempt to fix the "too many open files" errors on several of the | Gregory P. Smith | 2014-06-01 | 1 | -4/+6 |
| | | | | | buildbots that the new test_close_fds_when_max_fd_is_lowered test causes. It now leaves 10 more low fd's available. | ||||
* | Explicitly wait for the child instead of letting a destructor do it. | Gregory P. Smith | 2014-06-01 | 1 | -1/+1 |
| | |||||
* | Fix the comment to not refer to the removed end_fd parameter. | Gregory P. Smith | 2014-06-01 | 1 | -2/+2 |
| | |||||
* | Don't restrict ourselves to a "max" fd when closing fds before exec() | Gregory P. Smith | 2014-06-01 | 3 | -43/+102 |
| | | | | | | | | | when we have a way to get an actual list of all open fds from the OS. Fixes issue #21618: The subprocess module would ignore fds that were inherited by the calling process and already higher than POSIX resource limits would otherwise allow. On systems with a functioning /proc/self/fd or /dev/fd interface the max is now ignored and all fds are closed. | ||||
* | Issue #21605: Added tests for Tkinter images. | Serhiy Storchaka | 2014-06-01 | 2 | -0/+343 |
| | |||||
* | Added missed calls of splitlist(). | Serhiy Storchaka | 2014-06-01 | 3 | -9/+7 |
| | |||||
* | Issue #21477: Update htest docstring and remove extraneous differences between | Terry Jan Reedy | 2014-06-01 | 1 | -9/+18 |
| | | | | 2.7 and 3.4. Original patch by Saimadhav Heblikar. | ||||
* | give the correct fixer name (closes #21604) | Benjamin Peterson | 2014-05-31 | 1 | -1/+1 |
| | |||||
* | Issue #21572: Change license command to fallback to generic license URL. | Ned Deily | 2014-05-31 | 1 | -1/+1 |
| | |||||
* | Issue #21593: (from StackOverflow) minor doc clarification for re.search. | Terry Jan Reedy | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | Issue #21608: Updated HTTPHandler documentation. | Vinay Sajip | 2014-05-30 | 1 | -1/+18 |
| | |||||
* | Test correct getXXX methods in Tkinter bigmem tests. | Serhiy Storchaka | 2014-05-30 | 1 | -3/+3 |
| | | | | Tk.getint is just int, true Tk wrapper is available as Tk.tk.getint. | ||||
* | Issue #21552: Fixed possible integer overflow of too long string lengths in | Serhiy Storchaka | 2014-05-30 | 3 | -2/+64 |
| | | | | the tkinter module on 64-bit platforms. | ||||
* | Add tests for getint, getdouble and getboolean methods of the tkapp object. | Serhiy Storchaka | 2014-05-30 | 1 | -0/+44 |
| | |||||
* | Fix issue #14315: The zipfile module now ignores extra fields in the central | Gregory P. Smith | 2014-05-30 | 3 | -1/+21 |
| | | | | | | directory that are too short to be parsed instead of letting a struct.unpack error bubble up as this "bad data" appears in many real world zip files in the wild and is ignored by other zip tools. | ||||
* | Issue #21226: fix a ref leak. | Eric Snow | 2014-05-29 | 1 | -0/+1 |
| | |||||
* | Issue #21477: Add htests for GrepDialog, UndoDelegator, and configDialog. | Terry Jan Reedy | 2014-05-29 | 5 | -21/+108 |
| | | | | Put instructions in a fixed size scrollable Text. Patch by Saimadhav Heblikar. | ||||
* | Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc | Victor Stinner | 2014-05-28 | 2 | -6/+6 |
| | | | | The function sets the the pipe to non-blocking mode. | ||||
* | Issue #21376: document asyncio.TimeoutError | Victor Stinner | 2014-05-28 | 1 | -4/+17 |
| | |||||
* | Restore performance of some dumb database methods (regression introduced by ↵ | Serhiy Storchaka | 2014-05-28 | 1 | -8/+19 |
| | | | | #19385). | ||||
* | Issue #21402: tkinter.ttk now works when default root window is not set. | Serhiy Storchaka | 2014-05-28 | 3 | -36/+57 |
| | |||||
* | Issue #21493: Added test for ntpath.expanduser(). Original patch by | Serhiy Storchaka | 2014-05-28 | 2 | -0/+38 |
| | | | | Claudiu Popa. | ||||
* | Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulr | Serhiy Storchaka | 2014-05-28 | 4 | -5/+50 |
| | | | | it supports reverse() and negative indices. Original patch by Claudiu Popa. | ||||
* | Issue #18807: If copying (no symlinks) specified for a venv, then the python ↵ | Vinay Sajip | 2014-05-28 | 2 | -1/+8 |
| | | | | interpreter aliases (python, python3) are now created by copying rather than symlinking. | ||||
* | Fix for raising exception not derived from BaseException in ↵ | Andrew Svetlov | 2014-05-27 | 2 | -1/+5 |
| | | | | _SelectorSslTransport.resume_reading | ||||
* | Issue #21477: Add htests for Search and Replace dialogs. | Terry Jan Reedy | 2014-05-27 | 4 | -15/+73 |
| | | | | Patch by Saimadhav Heblikar. | ||||
* | Issue 21439: Minor issues in the reference manual. | Raymond Hettinger | 2014-05-27 | 5 | -84/+102 |
| | | | | (Contributed by Feliks Kluzniak.) | ||||
* | a post 3.4.1 world | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | grammar and sentence flow fix | Benjamin Peterson | 2014-05-26 | 1 | -2/+1 |
| | |||||
* | format reST directive in the usual way | Benjamin Peterson | 2014-05-26 | 1 | -3/+5 |
| | |||||
* | link to wikipedia description of cryptographic salt | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | oxford comma | Benjamin Peterson | 2014-05-26 | 1 | -3/+3 |
| | |||||
* | remove tab (closes #21587) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | fix typo in variable name (closes #21586) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵ | Raymond Hettinger | 2014-05-26 | 3 | -0/+13 |
| | | | | comparing to unknown types. | ||||
* | Issue 8743: Improve interoperability between sets and the collections.Set ↵ | Raymond Hettinger | 2014-05-26 | 3 | -6/+180 |
| | | | | abstract base class. | ||||
* | Issue 21558: Fix a typo in the contextlib docs | Raymond Hettinger | 2014-05-26 | 1 | -1/+1 |
| | |||||
* | Issue 13355: Make random.triangular degrade gracefully when low == high. | Raymond Hettinger | 2014-05-26 | 3 | -2/+8 |
| | |||||
* | Issue #21477: Idle htest: modify run; add more tests. | Terry Jan Reedy | 2014-05-25 | 9 | -79/+160 |
| | | | | Patch by Saimadhav Heblikar. 2.7 version will follow. | ||||
* | Mention setuptools & wheel as key terms for distribution | Nick Coghlan | 2014-05-25 | 1 | -1/+17 |
| | |||||
* | Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. | Serhiy Storchaka | 2014-05-25 | 2 | -0/+62 |
| | |||||
* | Issue #18918: Removed non-existing topic from a list of available topics. | Serhiy Storchaka | 2014-05-25 | 1 | -1/+0 |
| | | | | | The 'File objects' section was removed in Python 3. Patch by Claudiu Popa. | ||||
* | Issue #21477: Idle htest: merge and modify run and runall; add many tests. | Terry Jan Reedy | 2014-05-24 | 18 | -181/+414 |
| | | | | Patch by Saimadhav Heblikar | ||||
* | Fixed new Tkinter tests added in issue #21522 with Tk 8.4. | Serhiy Storchaka | 2014-05-23 | 1 | -6/+13 |
| | |||||
* | Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not | Brett Cannon | 2014-05-23 | 3 | -1/+23 |
| | | | | | | raise an exception when a module doesn't exist. Thanks to Pavel Aslanov for the bug report. | ||||
* | Issue #21538: The plistlib module now supports loading of binary plist files | Serhiy Storchaka | 2014-05-23 | 3 | -6/+28 |
| | | | | when reference or offset size is not a power of two. | ||||
* | Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), | Serhiy Storchaka | 2014-05-23 | 2 | -0/+187 |
| | | | | PanedWindow.paneconfigure(), and Menu.entryconfigure(). |