- 02 Jul, 2014 1 commit
-
-
Zachary Ware authored
-
- 01 Jul, 2014 10 commits
-
-
Terry Jan Reedy authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
ssl.RAND_add() now supports strings longer than 2 GB.
-
Victor Stinner authored
-
Victor Stinner authored
size_t, because %zi/%u is not supported on all platforms.
-
Ned Deily authored
-
Terry Jan Reedy authored
to remove duplication and return info for tests. Rewrite corresponding tests. Test_create_option_buttons was not testing anything because of buggy comparisons. Use Python subscripting to get widget options.
-
Berker Peksag authored
-
Terry Jan Reedy authored
-
- 30 Jun, 2014 6 commits
-
-
Terry Jan Reedy authored
either deleting or moving to the module's main function.
-
Victor Stinner authored
don't log the "destroy pending task" message anymore. The log is redundant for run_until_complete() and useless in run_briefly().
-
Victor Stinner authored
- Sort imports - Simplify/optimize iscoroutine(). Inline inspect.isgenerator(obj): replace it with isinstance(obj, types.GeneratorType) - CoroWrapper: check at runtime if Python has the yield-from bug #21209. If Python has the bug, check if CoroWrapper.send() was called by yield-from to decide if parameters must be unpacked or not. - Fix "Task was destroyed but it is pending!" warning in test_task_source_traceback()
-
Berker Peksag authored
Reported by Krishna Kumar Thakur on docs@.
-
Ned Deily authored
-
Berker Peksag authored
-
- 29 Jun, 2014 2 commits
-
-
Stefan Krah authored
getbufferproc().
-
Berker Peksag authored
-
- 28 Jun, 2014 2 commits
-
-
Victor Stinner authored
-
Jesus Cea authored
-
- 27 Jun, 2014 10 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
object is destroyed. The destructor now closes the file if needed. The close() method can now be called twice: the second call does nothing.
-
Victor Stinner authored
- Use support.captured_stderr() where appropriate - Removes some "from test.support import xxx" import and uses support.xxx instead.
-
Ezio Melotti authored
-
Victor Stinner authored
Handle objects are created. Pass the traceback to call_exception_handler() in the 'source_traceback' key. The traceback is truncated to hide internal calls in asyncio, show only the traceback from user code. Add tests for the new source_traceback, and a test for the 'Future/Task exception was never retrieved' log.
-
Victor Stinner authored
object was created to the "coroutine ... was never yield from" log
-
Victor Stinner authored
-
Ned Deily authored
-
Benjamin Peterson authored
-
- 26 Jun, 2014 5 commits
-
-
Victor Stinner authored
-
Zachary Ware authored
-
R David Murray authored
This makes the behavior match that of Parser. Patch by Vajrasky Kok.
-
Raymond Hettinger authored
-
Terry Jan Reedy authored
move two functions next to the functions that use them.
-
- 25 Jun, 2014 4 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
- Python issue 21163: Fix more "Task was destroyed but it is pending!" logs in tests - Add test to check that run_until_complete() checks the loop of the future
-
Victor Stinner authored
-