Victor Stinner
e8ebe152de
Windows buildbot: use --timeout feature in Tools/buildbot/test-amd64.bat
Use the same default timeout than test.bat: 1 hour (3600 seconds).
12 years ago
Zachary Ware
52855719f5
Issue #20221 : Removed conflicting (or circular) hypot definition
when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed.
12 years ago
Zachary Ware
2d659518aa
Issue #20221 : Removed conflicting (or circular) hypot definition
when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed.
12 years ago
Yury Selivanov
f9200ae398
asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #20706
12 years ago
Victor Stinner
a90e8edaea
asyncio: _check_resolved_address() must also accept IPv6 without flow_info and
scope_id: (host, port).
12 years ago
Yury Selivanov
35669ae77e
asyncio.docs: Improve documentation of Streams. Issue #20696 .
12 years ago
Yury Selivanov
cd153f8bdd
Misc/NEWS: Add some missing news items re asyncio.
12 years ago
Victor Stinner
0211ed3e89
asyncio: ops, and now fix also the unit test for IPv6 address:
test_sock_connect_address()
12 years ago
Victor Stinner
013dece44d
asyncio: Fix _check_resolved_address() for IPv6 address
12 years ago
Victor Stinner
da492a8c39
asyncio: remove unused imports and unused variables noticed by pyflakes
12 years ago
Victor Stinner
2c7203c6f5
asyncio: Fix _ProactorWritePipeTransport._pipe_closed()
The "exc" variable was not defined, pass a BrokenPipeError exception instead.
12 years ago
Victor Stinner
cdb476bd43
asyncio.subprocess: Fix a race condition in communicate()
Use self._loop instead of self._transport._loop, because transport._loop is set
to None at process exit.
12 years ago
Benjamin Peterson
88a928b614
merge 3.3 ( #20695 )
12 years ago
Benjamin Peterson
a96fd48298
merge 3.2 ( #20695 )
12 years ago
Benjamin Peterson
665a2bcdf8
bump Python-ast.c
12 years ago
Benjamin Peterson
1b94030b37
update logo url ( #20695 )
12 years ago
Benjamin Peterson
f6218a2191
open retrieved file in binary mode, since it's now compressed
12 years ago
Yury Selivanov
d5797422dd
asyncio.docs: Document Error Handling API and asyncio.Handle
12 years ago
Victor Stinner
aabc131224
asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG
env var), document the default debug mode
12 years ago
Benjamin Peterson
45d8e7b920
update magic number for #20625
12 years ago
Victor Stinner
7ef60cd8c2
asyncio, Tulip issue #136 : Add get/set_debug() methods to BaseEventLoopTests.
Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since
Python startup, to be able to debug coroutines defined directly in the asyncio
module.
12 years ago
Yury Selivanov
f4558e8b54
merge heads
12 years ago
Yury Selivanov
57d240ef64
inspect: Fix getfullargspec() to not to follow __wrapped__ chains
Initial patch by Nick Coghlan.
12 years ago
Serhiy Storchaka
056eb02719
Issue #20654 : Fixed pydoc for enums with zero value. Patch by Vajrasky Kok.
12 years ago
Victor Stinner
4ac30f1792
Issue #20682 : Oops, fix test_create_connection() of test_asyncio (fix my previous commit)
12 years ago
Victor Stinner
8c33ffd9b6
Close #20682 : Fix UNIX sockets tests of test_asyncio on Mac OS X Tiger
On Mac OS X Tiger (and older), getsockname() returns a zero-length address for
UNIX socket, and so 'sockname' extra info is None.
12 years ago
Serhiy Storchaka
a32d6b469b
Null merge
12 years ago
Serhiy Storchaka
d8ea31417a
Merge heads
12 years ago
Serhiy Storchaka
2bb6c358e8
Merge heads
12 years ago
Serhiy Storchaka
f6a38e11c0
Issue #20672 : Fixed tests for TarFile.list() on non-UTF-8 locales.
12 years ago
Zachary Ware
1d7ba5cd7b
Issue #20510 : Merge with 3.3
12 years ago
Zachary Ware
1f9e601765
Issue #20510 : Confirm that the code attribute of the SystemExit
exception raised by sys.exit is None when no code is given.
As suggested by Serhiy Storchaka.
12 years ago
Serhiy Storchaka
162c477f41
Issue #20672 : Fixed tests for TarFile.list() on non-UTF-8 locales.
12 years ago
Serhiy Storchaka
22234dab05
Fixed grid_columnconfigure() and grid_rowconfigure() methods of
Tkinter widgets to work in wantobjects=True mode.
12 years ago
Serhiy Storchaka
e95977621d
Fixed grid_columnconfigure() and grid_rowconfigure() methods of
Tkinter widgets to work in wantobjects=True mode.
12 years ago
Yury Selivanov
2d01c0a080
asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol
12 years ago
Victor Stinner
03e9cb2b0b
asyncio: document new create_unix_connection() and create_unix_server() methods
of BaseEventLoop
12 years ago
Yury Selivanov
b41a42e316
asyncio: pep8-ify the code.
12 years ago
Yury Selivanov
b0b0e628ee
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
12 years ago
Victor Stinner
8abac348a9
Issue #20682 : test_asyncio, _basetest_create_connection() checks also the
sockname, as _basetest_create_ssl_connection().
12 years ago
Victor Stinner
884e40b982
asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and
DeprecationWarning warnings. create_unix_server() closes the socket on any
error, not only on OSError.
12 years ago
Victor Stinner
065ca25aae
asyncio, Tulip issue 139: Improve error messages on "fatal errors"
Mention if the error was caused by a read or a write, and be more specific on
the object (ex: "pipe transport" instead of "transport").
12 years ago
Yury Selivanov
c098241342
asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin
12 years ago
Yury Selivanov
ff827f08ac
asyncio: New error handling API. Issue #20681 .
12 years ago
Victor Stinner
065efc3072
Issue #20625 : Fix compilation issue
12 years ago
Victor Stinner
5f47ac2aaa
(Merge 3.3) Issue #19612 : On Windows, subprocess.Popen.communicate() now
ignores OSError(22, 'Invalid argument') when writing input data into stdin,
whereas the process already exited.
12 years ago
Victor Stinner
d5c8ce7cc0
Issue #19612 : On Windows, subprocess.Popen.communicate() now ignores
OSError(22, 'Invalid argument') when writing input data into stdin, whereas
the process already exited.
12 years ago
Ethan Furman
9a0cbcc4f8
Close issue20653: allow Enum subclasses to override __reduce_ex__
12 years ago
Guido van Rossum
59a5533028
asyncio: Make tests pass on Windows.
12 years ago
Yury Selivanov
34ce99f66d
Mangle __parameters in __annotations__ dict properly. Issue #20625 .
12 years ago