- 10 Tem, 2014 5 kayıt (commit)
-
-
Victor Stinner yazdı
- CoroWrapper.__del__() now reuses repr(CoroWrapper) to log the "... was never yielded from" warning - Improve CoroWrapper: copy also the qualified name on Python 3.4, not only on Python 3.5+
-
Victor Stinner yazdı
- repr(Task) and repr(CoroWrapper) now also includes where these objects were created. If the coroutine is not a generator (don't use "yield from"), use the location of the function, not the location of the coro() wrapper. - Fix create_task(): truncate the traceback to hide the call to create_task().
-
Victor Stinner yazdı
- Issues #21936, #21163: Fix sporadic failures of test_future_exception_never_retrieved() - Handle.cancel() now clears references to callback and args - In debug mode, repr(Handle) now contains the location where the Handle was created.
-
Zachary Ware yazdı
-
Terry Jan Reedy yazdı
-
- 09 Tem, 2014 1 kayıt (commit)
-
-
Berker Peksag yazdı
-
- 08 Tem, 2014 4 kayıt (commit)
-
-
Victor Stinner yazdı
until protocol.connection_made() has been called. Document also why transport constructors use a waiter.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
- Document the new create_task() method - "Hide" the Task class: point to the create_task() method for interoperability - Rewrite the documentation of the Task class - Document the "Pending task destroyed" - Update output in debug mode of examples in the dev section - Replace Task() with create_task() in examples
-
Victor Stinner yazdı
- Tulip issue 185: Add a create_task() method to event loops. The create_task() method can be overriden in custom event loop to implement their own task class. For example, greenio and Pulsar projects use their own task class. The create_task() method is now preferred over creating directly task using the Task class. - tests: fix a warning - fix typo in the name of a test function - Update AbstractEventLoop: add new event loop methods; update also the unit test
-
- 07 Tem, 2014 18 kayıt (commit)
-
-
Victor Stinner yazdı
the number of received bytes is negative.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
get a bytes string
-
Victor Stinner yazdı
PySys_FormatStderr() call
-
Victor Stinner yazdı
size to be a Py_ssize_t, not an int. _ssl.c is now "Py_ssize_t clean".
-
Zachary Ware yazdı
Initial patch by Kathleen Weaver.
-
Zachary Ware yazdı
-
Berker Peksag yazdı
-
Victor Stinner yazdı
Backout the "Tulip issue 181: Faster create_connection()" changeset, it was a mistake.
-
Victor Stinner yazdı
- Tulip issue #181: Faster create_connection(). Call directly waiter.set_result() in the constructor of _ProactorBasePipeTransport and _SelectorSocketTransport, instead of using of delaying the call with call_soon(). - Cleanup iscoroutine()
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
representations (on mips and m68k platforms).
-
Antoine Pitrou yazdı
Patch by July Tikhonov.
-
Antoine Pitrou yazdı
Issue #21714: Disallow the construction of invalid paths using Path.with_name(). Original patch by Antony Lee.
-
- 06 Tem, 2014 2 kayıt (commit)
-
-
Ned Deily yazdı
due to possible uninitialized _config_vars. Original patch by Alex Gaynor.
-
Ezio Melotti yazdı
-
- 05 Tem, 2014 5 kayıt (commit)
-
-
Victor Stinner yazdı
loop at exit. Patch written by Vajrasky Kok (I modified also the "hello world" example using a coroutine).
-
Victor Stinner yazdı
of a Future with call_soon(). Add an helper, a private method, to set the result only if the future was not cancelled.
-
Berker Peksag yazdı
Patch by Stefan Tatschner.
-
Antoine Pitrou yazdı
Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called.
-
Benjamin Peterson yazdı
-
- 04 Tem, 2014 2 kayıt (commit)
-
-
Victor Stinner yazdı
uses "%zd" for Py_ssize_t, not PY_FORMAT_SIZE_T
-
Berker Peksag yazdı
Reported by Draic Kin on docs@.
-
- 03 Tem, 2014 2 kayıt (commit)
-
-
Zachary Ware yazdı
When ``None`` was passed as a ``REG_BINARY`` value to SetValueEx, PyMem_DEL was called on an uninitialized buffer. Patch by John Ehresman. (Also an incidental typo fix in a comment in test_winreg)
-
Andrew Svetlov yazdı
-
- 02 Tem, 2014 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-