- 02 Tem, 2014 6 kayıt (commit)
-
-
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ı
it ignored I/O errors if at least the first C call read() succeed.
-
Andrew Svetlov yazdı
-
Terry Jan Reedy yazdı
-
Zachary Ware yazdı
-
- 01 Tem, 2014 10 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
ssl.RAND_add() now supports strings longer than 2 GB.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
size_t, because %zi/%u is not supported on all platforms.
-
Ned Deily 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ı
-
Terry Jan Reedy yazdı
-
- 30 Haz, 2014 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
either deleting or moving to the module's main function.
-
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()
-
Berker Peksag yazdı
Reported by Krishna Kumar Thakur on docs@.
-
Ned Deily yazdı
-
Berker Peksag yazdı
-
- 29 Haz, 2014 2 kayıt (commit)
-
-
Stefan Krah yazdı
getbufferproc().
-
Berker Peksag yazdı
-
- 28 Haz, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Jesus Cea yazdı
-
- 27 Haz, 2014 10 kayıt (commit)
-
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
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 yazdı
- Use support.captured_stderr() where appropriate - Removes some "from test.support import xxx" import and uses support.xxx instead.
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
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 yazdı
object was created to the "coroutine ... was never yield from" log
-
Victor Stinner yazdı
-
Ned Deily yazdı
-
Benjamin Peterson yazdı
-
- 26 Haz, 2014 4 kayıt (commit)
-
-
Victor Stinner yazdı
-
Zachary Ware yazdı
-
R David Murray yazdı
This makes the behavior match that of Parser. Patch by Vajrasky Kok.
-
Raymond Hettinger yazdı
-