- 16 Haz, 2014 10 kayıt (commit)
-
-
Zachary Ware yazdı
-
Victor Stinner yazdı
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 yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
arguments. Original patch by Gareth Rees.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
replace \ line contiuation. Tested against nearly done test_hyperparser.py.
-
Benjamin Peterson yazdı
-
Gregory P. Smith yazdı
-
Gregory P. Smith yazdı
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 Haz, 2014 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Benjamin Peterson yazdı
Patch from Nikolaus Rath.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 14 Haz, 2014 2 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
- 13 Haz, 2014 7 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Zachary Ware yazdı
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 yazdı
-
-
Zachary Ware yazdı
-
Victor Stinner yazdı
-
- 12 Haz, 2014 3 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Victor Stinner yazdı
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 yazdı
bindings for Idle so Caps Lock does not disable them. Patch by Roger Serwy.
-
- 11 Haz, 2014 5 kayıt (commit)
-
-
Zachary Ware yazdı
-
Senthil Kumaran yazdı
-
Larry Hastings yazdı
-
Vinay Sajip yazdı
-
Serhiy Storchaka yazdı
(issues #21677, #21310).
-
- 10 Haz, 2014 5 kayıt (commit)
-
-
Zachary Ware yazdı
Initial patch by Olive Kilburn.
-
Victor Stinner yazdı
be empty.
-
Victor Stinner yazdı
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 yazdı
-
Terry Jan Reedy yazdı
while still being written to. With no console, this closed Idle. Also add missing import and a few other changes.
-
- 09 Haz, 2014 3 kayıt (commit)
-
-
R David Murray yazdı
Patch by Milan Oberkirch.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-