summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Update references to Python docs in the sidebar index.Senthil Kumaran2014-06-031-16/+17
| | | | | | | | | | | | Patch contributed by Auke Willem Oosterhoff.
* | | Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier.Terry Jan Reedy2014-06-032-2/+3
| | |
* | | Issue #21601: Document asyncio.Task.cancel(). Initial patch written by VajraskyVictor Stinner2014-06-022-3/+23
| | | | | | | | | | | | Kok.
* | | Issue #18492: Allow all resources when tests are not run by regrtest.py.Zachary Ware2014-06-0214-59/+37
| | | | | | | | | | | | This changeset also includes cleanup allowed by this behavior change.
* | | Issue #21639: Add a test to check that PyMem_Malloc(0) with tracemalloc enabledVictor Stinner2014-06-021-0/+6
| | | | | | | | | | | | does not crash.
* | | Issue #21639: Fix name of _testcapi test functionsVictor Stinner2014-06-021-2/+2
| | |
* | | Issue #6181: Fixed minor bugs in tkinter.Listbox methods:Serhiy Storchaka2014-06-024-29/+60
| | | | | | | | | | | | bbox(), curselection() and get().
* | | Issue #21623: open pyproject.props with an explicit encodingZachary Ware2014-06-021-1/+1
| | |
* | | Issue #6181: Fixed errors in tkinter.Listbox docstrings.Serhiy Storchaka2014-06-021-4/+4
| | | | | | | | | | | | Based on patch by Guilherme Polo.
* | | Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows.Victor Stinner2014-06-021-10/+12
| | | | | | | | | | | | Patch written by Claudiu Popa.
* | | Issue #21634: Fix pystone micro-benchmark: use floor division instead of trueVictor Stinner2014-06-022-4/+15
| | | | | | | | | | | | | | | division to benchmark integers instead of floating point numbers. Set pystone version to 1.2. Patch written by Lennart Regebro.
* | | Issue #17095: Fix Modules/Setup *shared* support.Ned Deily2014-06-023-6/+21
| | | | | | | | | | | | Original patch by Thomas Wouters.
* | | Updated logging HOWTO section on optimization.Vinay Sajip2014-06-011-0/+15
| | |
* | | Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSDGregory P. Smith2014-06-011-0/+3
| | | | | | | | | | | | when fdescfs is not mounted on /dev/fd.
* | | Attempt to fix the "too many open files" errors on several of theGregory P. Smith2014-06-011-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. Smith2014-06-011-1/+1
| | |
* | | Fix the comment to not refer to the removed end_fd parameter.Gregory P. Smith2014-06-011-2/+2
| | |
* | | Don't restrict ourselves to a "max" fd when closing fds before exec()Gregory P. Smith2014-06-013-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 Storchaka2014-06-012-0/+343
| | |
* | | Added missed calls of splitlist().Serhiy Storchaka2014-06-013-9/+7
| | |
* | | Issue #21477: Update htest docstring and remove extraneous differences betweenTerry Jan Reedy2014-06-011-9/+18
| | | | | | | | | | | | 2.7 and 3.4. Original patch by Saimadhav Heblikar.
* | | give the correct fixer name (closes #21604)Benjamin Peterson2014-05-311-1/+1
| | |
* | | Issue #21572: Change license command to fallback to generic license URL.Ned Deily2014-05-311-1/+1
| | |
* | | Issue #21593: (from StackOverflow) minor doc clarification for re.search.Terry Jan Reedy2014-05-301-1/+1
| | |
* | | Issue #21608: Updated HTTPHandler documentation.Vinay Sajip2014-05-301-1/+18
| | |
* | | Test correct getXXX methods in Tkinter bigmem tests.Serhiy Storchaka2014-05-301-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 inSerhiy Storchaka2014-05-303-2/+64
| | | | | | | | | | | | the tkinter module on 64-bit platforms.
* | | Add tests for getint, getdouble and getboolean methods of the tkapp object.Serhiy Storchaka2014-05-301-0/+44
| | |
* | | Fix issue #14315: The zipfile module now ignores extra fields in the centralGregory P. Smith2014-05-303-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 Snow2014-05-291-0/+1
| | |
* | | Issue #21477: Add htests for GrepDialog, UndoDelegator, and configDialog.Terry Jan Reedy2014-05-295-21/+108
| | | | | | | | | | | | Put instructions in a fixed size scrollable Text. Patch by Saimadhav Heblikar.
* | | Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe docVictor Stinner2014-05-282-6/+6
| | | | | | | | | | | | The function sets the the pipe to non-blocking mode.
* | | Issue #21376: document asyncio.TimeoutErrorVictor Stinner2014-05-281-4/+17
| | |
* | | Restore performance of some dumb database methods (regression introduced by ↵Serhiy Storchaka2014-05-281-8/+19
| | | | | | | | | | | | #19385).
* | | Issue #21402: tkinter.ttk now works when default root window is not set.Serhiy Storchaka2014-05-283-36/+57
| | |
* | | Issue #21493: Added test for ntpath.expanduser(). Original patch bySerhiy Storchaka2014-05-282-0/+38
| | | | | | | | | | | | Claudiu Popa.
* | | Issue #10203: sqlite3.Row now truly supports sequence protocol. In particulrSerhiy Storchaka2014-05-284-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 Sajip2014-05-282-1/+8
| | | | | | | | | | | | interpreter aliases (python, python3) are now created by copying rather than symlinking.
* | | Fix for raising exception not derived from BaseException in ↵Andrew Svetlov2014-05-272-1/+5
| | | | | | | | | | | | _SelectorSslTransport.resume_reading
* | | Issue #21477: Add htests for Search and Replace dialogs.Terry Jan Reedy2014-05-274-15/+73
| | | | | | | | | | | | Patch by Saimadhav Heblikar.
* | | Issue 21439: Minor issues in the reference manual.Raymond Hettinger2014-05-275-84/+102
| | | | | | | | | | | | (Contributed by Feliks Kluzniak.)
* | | a post 3.4.1 worldBenjamin Peterson2014-05-261-1/+1
| | |
* | | grammar and sentence flow fixBenjamin Peterson2014-05-261-2/+1
| | |
* | | format reST directive in the usual wayBenjamin Peterson2014-05-261-3/+5
| | |
* | | link to wikipedia description of cryptographic saltBenjamin Peterson2014-05-261-1/+1
| | |
* | | oxford commaBenjamin Peterson2014-05-261-3/+3
| | |
* | | remove tab (closes #21587)Benjamin Peterson2014-05-261-1/+1
| | |
* | | fix typo in variable name (closes #21586)Benjamin Peterson2014-05-261-1/+1
| | |
* | | Issue #21481: Teach argparse equality tests to return NotImplemented when ↵Raymond Hettinger2014-05-263-0/+13
| | | | | | | | | | | | comparing to unknown types.
* | | Issue 8743: Improve interoperability between sets and the collections.Set ↵Raymond Hettinger2014-05-263-6/+180
| | | | | | | | | | | | abstract base class.