- 16 Jun, 2014 13 commits
-
-
Terry Jan Reedy authored
Heblikar. Correct a minor 3.x bug in HyperParser discovered by testing.
-
Victor Stinner authored
-
Victor Stinner authored
Claudiu Popa. The print_diffs() function was not defined, using the assertEqual() is more reliable.
-
Zachary Ware authored
-
Victor Stinner authored
On Python 3.5, generator now gets their name from the function, no more from the code. So we get the expected "notmuch" name instead of the generic "coro" name.
-
Nick Coghlan authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
arguments. Original patch by Gareth Rees.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
replace \ line contiuation. Tested against nearly done test_hyperparser.py.
-
Benjamin Peterson authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
that the rlimit calls happens in a child process rather than the TestCase process to attempt to fix the gentoo buildbot's "Too many open files" error.
-
- 15 Jun, 2014 5 commits
-
-
Raymond Hettinger authored
-
Benjamin Peterson authored
Patch from Nikolaus Rath.
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 14 Jun, 2014 2 commits
-
-
Vinay Sajip authored
-
Vinay Sajip authored
-
- 13 Jun, 2014 7 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Zachary Ware authored
Skipped tests are now marked as skipped, formerly commented-out or renamed-so-it-doesn't-look-like-a-test tests are uncommented, properly named, and unconditionally skipped, some tests that simply didn't run before are now able to run, and a few are split into multiple methods instead of skipping via 'return' in the middle of a method. Also, a couple of unused files are removed completely.
-
Terry Jan Reedy authored
-
-
Zachary Ware authored
-
Victor Stinner authored
-
- 12 Jun, 2014 3 commits
-
-
Vinay Sajip authored
-
Victor Stinner authored
repr(Handle) is shorter for function: "foo" instead of "<function foo at 0x...>". It now also includes the source of the callback, filename and line number where it was defined, if available. repr(Task) now also includes the current position in the code, filename and line number, if available. If the coroutine (generator) is done, the line number is omitted and "done" is added.
-
Terry Jan Reedy authored
bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
-
- 11 Jun, 2014 5 commits
-
-
Zachary Ware authored
-
Senthil Kumaran authored
-
Larry Hastings authored
-
Vinay Sajip authored
-
Serhiy Storchaka authored
(issues #21677, #21310).
-
- 10 Jun, 2014 5 commits
-
-
Zachary Ware authored
Initial patch by Olive Kilburn.
-
Victor Stinner authored
be empty.
-
Victor Stinner authored
Add BaseEventLoop._closed attribute and use it to check if the event loop was closed or not, instead of checking different attributes in each subclass of BaseEventLoop. run_forever() and run_until_complete() methods now raise a RuntimeError('Event loop is closed') exception if the event loop was closed. BaseProactorEventLoop.close() now also cancels "accept futures".
-
Victor Stinner authored
-
Terry Jan Reedy authored
while still being written to. With no console, this closed Idle. Also add missing import and a few other changes.
-