- 02 Tem, 2014 14 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
* _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode, not in read mode * Examples: close the event loop at exit * More reliable CoroWrapper.__del__. If the constructor is interrupted by KeyboardInterrupt or the coroutine objet is destroyed lately, some the _source_traceback attribute doesn't exist anymore. * repr(Task): include also the future the task is waiting for
-
Victor Stinner yazdı
* _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode, not in read mode * Examples: close the event loop at exit * More reliable CoroWrapper.__del__. If the constructor is interrupted by KeyboardInterrupt or the coroutine objet is destroyed lately, some the _source_traceback attribute doesn't exist anymore. * repr(Task): include also the future the task is waiting for
-
Victor Stinner yazdı
anymore. Before, it ignored I/O errors if at least the first C call read() succeed.
-
Victor Stinner yazdı
it ignored I/O errors if at least the first C call read() succeed.
-
Jason R. Coombs yazdı
-
Berker Peksag yazdı
Patch by Pablo Torres Navarrete and SilentGhost.
-
Andrew Svetlov yazdı
-
Andrew Svetlov yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Zachary Ware yazdı
-
Zachary Ware yazdı
-
- 01 Tem, 2014 20 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
parameters
-
Victor Stinner yazdı
-
Victor Stinner yazdı
parsing parameters
-
Victor Stinner yazdı
-
Victor Stinner yazdı
parameters. ssl.RAND_add() now supports strings longer than 2 GB.
-
Victor Stinner yazdı
ssl.RAND_add() now supports strings longer than 2 GB.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
to format C size_t, because %zi/%u is not supported on all platforms.
-
Victor Stinner yazdı
size_t, because %zi/%u is not supported on all platforms.
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
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 yazdı
-
Berker Peksag yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-
- 30 Haz, 2014 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
either deleting or moving to the module's main function.
-
Victor Stinner yazdı
test_utils.run_briefly() don't log the "destroy pending task" message anymore. The log is redundant for run_until_complete() and useless in run_briefly().
-
Victor Stinner yazdı
don't log the "destroy pending task" message anymore. The log is redundant for run_until_complete() and useless in run_briefly().
-
Victor Stinner yazdı
- 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()
-
Victor Stinner yazdı
- 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()
-