https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
f34177a Version bump for Python 3.4.0rc2. 23 February 2014, 08:18:24 UTC
209c043 Regenerated pydoc topics for Python 3.4.0rc2. 23 February 2014, 08:16:46 UTC
7850541 Issue #20641: Run custom actions with the NoImpersonate flag to support UAC. 22 February 2014, 22:44:20 UTC
9d4c5f4 Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc. I'll look into re-enabling them in issue #20128. 22 February 2014, 20:57:08 UTC
b79b785 whatsnew: importlib deprecations. This addresses issue #20199, if I got it right. The deprecation and replacement lists are based on the importlib documentation. 22 February 2014, 19:28:46 UTC
8dfb457 inspect.signature: Check for function-like objects before builtins. Issue #17159 21 February 2014, 23:30:53 UTC
e2df3ea Upgrade pip from 1.5.3 to 1.5.4 21 February 2014, 12:42:39 UTC
13da6a1 Issue #20710: The pydoc summary line no longer displays the "self" parameter for bound methods. Previous to this change, it displayed "self" for methods implemented in Python but not methods implemented in C; it is now both internally consistent and consistent with inspect.Signature. 21 February 2014, 07:34:46 UTC
d224b6a inspect: Fix getfullargspec to support builtin module-level functions. Issue #20711 21 February 2014, 06:32:42 UTC
b0b75a1 Upgrade pip from 1.5.2 to 1.5.3 21 February 2014, 01:53:27 UTC
53281b1 asyncio.docs: Document subprocess_exec and subprocess_shell. Issue #20694. 21 February 2014, 01:10:28 UTC
0c9beb6 Issue #20221: Removed conflicting (or circular) hypot definition when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed. 20 February 2014, 21:39:29 UTC
37f15bc asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #20706 20 February 2014, 21:20:44 UTC
934c885 asyncio: _check_resolved_address() must also accept IPv6 without flow_info and scope_id: (host, port). 20 February 2014, 20:59:38 UTC
d3f8e30 asyncio.docs: Improve documentation of Streams. Issue #20696. 20 February 2014, 19:10:02 UTC
389b036 Misc/NEWS: Add some missing news items re asyncio. 20 February 2014, 18:59:14 UTC
6dcfec9 asyncio: ops, and now fix also the unit test for IPv6 address: test_sock_connect_address() 20 February 2014, 16:01:11 UTC
d1a727a asyncio: Fix _check_resolved_address() for IPv6 address 20 February 2014, 15:43:09 UTC
b4c9388 asyncio: remove unused imports and unused variables noticed by pyflakes 20 February 2014, 09:37:27 UTC
6f24d83 asyncio: Fix _ProactorWritePipeTransport._pipe_closed() The "exc" variable was not defined, pass a BrokenPipeError exception instead. 20 February 2014, 09:33:01 UTC
8d0230b 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. 20 February 2014, 09:12:59 UTC
a96ed63 merge 3.3 (#20695) 20 February 2014, 04:06:41 UTC
43ee1c1 asyncio.docs: Document Error Handling API and asyncio.Handle 20 February 2014, 01:58:44 UTC
1415e25 asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG env var), document the default debug mode 20 February 2014, 00:44:10 UTC
a50fd87 update magic number for #20625 19 February 2014, 23:05:36 UTC
0f3e6bc 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. 19 February 2014, 22:15:02 UTC
ff385b8 inspect: Fix getfullargspec() to not to follow __wrapped__ chains Initial patch by Nick Coghlan. 19 February 2014, 21:27:23 UTC
eaeb623 Issue #20682: Oops, fix test_create_connection() of test_asyncio (fix my previous commit) 19 February 2014, 17:32:03 UTC
df90ae6 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. 19 February 2014, 17:10:32 UTC
1589920 asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol 19 February 2014, 16:10:52 UTC
a6919aa asyncio: document new create_unix_connection() and create_unix_server() methods of BaseEventLoop 19 February 2014, 12:32:34 UTC
5779752 asyncio: pep8-ify the code. 19 February 2014, 03:56:15 UTC
dec1a45 asyncio: Fix spelling and typos. Thanks to Vajrasky Kok for discovering some of them. 19 February 2014, 03:27:48 UTC
74d519f Issue #20682: test_asyncio, _basetest_create_connection() checks also the sockname, as _basetest_create_ssl_connection(). 19 February 2014, 01:21:08 UTC
79a2952 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. 19 February 2014, 00:45:59 UTC
0ee29c2 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"). 19 February 2014, 00:40:41 UTC
3cb9914 asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixin 18 February 2014, 23:41:13 UTC
569efa2 asyncio: New error handling API. Issue #20681. 18 February 2014, 23:02:19 UTC
6acc5e1 Issue #20625: Fix compilation issue 18 February 2014, 21:07:56 UTC
dc87052 Close issue20653: allow Enum subclasses to override __reduce_ex__ 18 February 2014, 20:37:12 UTC
e3e786c asyncio: Make tests pass on Windows. 18 February 2014, 18:24:30 UTC
026019f Mangle __parameters in __annotations__ dict properly. Issue #20625. 18 February 2014, 17:49:41 UTC
ee227ae Issue #20609: Merge with 3.3. 18 February 2014, 17:35:15 UTC
907f017 Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS. 18 February 2014, 17:21:57 UTC
b057c52 asyncio: Add support for UNIX Domain Sockets. 18 February 2014, 17:15:06 UTC
fd9d374 Issue #20493: Document that asyncio should not exceed one day 18 February 2014, 08:37:43 UTC
86516d9 Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon. 18 February 2014, 08:22:00 UTC
9a49c64 Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenBSD 5.5. 18 February 2014, 08:13:47 UTC
3bc3aaa Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on OpenBSD older than 5.5 18 February 2014, 00:30:03 UTC
79c3bcf Issue #20655: Fix test_asyncio, run also subprocess tests. Patch written by Vajrasky Kok. 17 February 2014, 23:11:21 UTC
04e05da Close #20652: asyncio doc: close the event loop in run_forever() example. Fix also typo. Patch written by Vajrasky Kok. 17 February 2014, 09:54:30 UTC
a91ff14 Issue #20616: Add a format() method to tracemalloc.Traceback. 16 February 2014, 22:53:38 UTC
34c1540 merge backout for #20621 16 February 2014, 19:17:28 UTC
2626fab look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) 16 February 2014, 18:49:16 UTC
c00fa63 Issue #19744: Handle missing SSL/TLS in ensurepip - now also allows POSIX installation with SSL/TLS missing - a goal for pip 1.6 is to allow local use without SSL/TLS 14 February 2014, 23:14:54 UTC
e84fde9 set line and column numbers for keyword-only arg nodes (closes #20619) 14 February 2014, 00:22:14 UTC
933538e Issue #20526, #19466: Revert changes of issue #19466 which introduces a regression: don't clear anymore the state of Python threads early during the Python shutdown. 13 February 2014, 11:48:54 UTC
4c07377 Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host 13 February 2014, 09:46:05 UTC
1b0580b ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families. 13 February 2014, 08:24:37 UTC
2303fec asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue #20566. 13 February 2014, 01:58:19 UTC
b131778 asyncio.events: Use __slots__ in Handle and TimerHandle 12 February 2014, 22:01:52 UTC
9887fd7 Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than FreeBSD 8 11 February 2014, 17:40:56 UTC
613960b Issue #20505: Remove debug code 11 February 2014, 16:53:47 UTC
5d95afa merge 3.3 (#20594) 11 February 2014, 15:19:12 UTC
208556c asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if the list of futures is not a list but a Future, Task or coroutine object 11 February 2014, 10:54:08 UTC
20e0743 asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shell parameters 11 February 2014, 10:44:56 UTC
9af4a24 asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(), call_at() and run_in_executor() now raise a TypeError if the callback is a coroutine function. 11 February 2014, 10:34:30 UTC
262a458 Issue #20505: use also the monotonic time to decide if asyncio debug traces should be printed 11 February 2014, 09:26:53 UTC
7c4bd39 Issue #20505: Oops, only print debug info if selector.select(timeout) took less than timeout 11 February 2014, 09:10:41 UTC
8425bf8 Issue #20505: Improve debug info in asyncio event loop 11 February 2014, 09:08:08 UTC
7b467db Issue #20505: Fix TestLoop, set the clock resolution 11 February 2014, 08:03:47 UTC
ed1654f Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if scheduled tasks should be executed or not. 10 February 2014, 22:42:32 UTC
b38b5c4 merge with 3.3 10 February 2014, 21:11:21 UTC
6093a12 Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the test more reliable (= fail more often on Windows with HPET enabled). 10 February 2014, 18:17:46 UTC
a176d2d Created release branch for 3.4. 21 February 2014, 07:38:01 UTC
4cce8f2 Python 3.4.0rc1: Post-release updates. 11 February 2014, 08:14:16 UTC
f50691b Added tag v3.4.0rc1 for changeset 5e088cea8660 10 February 2014, 22:45:14 UTC
e9f73ac Python 3.4.0rc1: Version bump. 10 February 2014, 22:45:05 UTC
71d4e44 Add PyType_GetSlot to python3 def file. Patch courtesy Martin v. Löwis. 10 February 2014, 22:40:04 UTC
ad88d7a Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. 10 February 2014, 12:26:10 UTC
8f9f0f1 Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. 10 February 2014, 11:43:57 UTC
1c143b1 Issue #20505: Add debug info to analyze sporaric failures of test_timeout_rounding() on Windows XP buildbots. 10 February 2014, 10:47:50 UTC
69a2547 Issue #20530: The signatures for slot builtins have been updated to reflect the fact that they only accept positional-only arguments. 10 February 2014, 06:22:38 UTC
b082731 Issue #20517: Functions in the os module that accept two filenames now register both filenames in the exception on failure. This required adding new C API functions allowing OSError exceptions to reference two filenames instead of one. 10 February 2014, 06:05:19 UTC
dc62b7e asyncio: Tulip issue 112: Inline make_handle() into Handle constructor 09 February 2014, 23:45:44 UTC
136fea2 More complete documentation of event loops and policies. Documented the AbstractEventLoopPolicy interface explicitly and explained the relation between the global loop & policy access functions. Added an initial section that explains the connections in general terms. Documented missing XXX methods. 09 February 2014, 14:55:58 UTC
b73c833 Various formatting & grammar fixes in asyncio* docs. 09 February 2014, 14:07:47 UTC
8b40262 Fix typo in library/ipc.rst 09 February 2014, 13:54:13 UTC
3633ce3 Issue #20571: skip test_readline() of test_codecs for Windows code page 65001. The decoder does not support partial decoding yet for this code page. 09 February 2014, 12:11:53 UTC
dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. 09 February 2014, 11:46:20 UTC
505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. 09 February 2014, 11:33:53 UTC
2623c8c Issue #20530: Argument Clinic's signature format has been revised again. The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4. 09 February 2014, 06:15:29 UTC
09f08fe asyncio: Remove more relics of resolution/granularity. 09 February 2014, 03:44:02 UTC
72318b9 Issue #20500: clarify that invocation may be indirect 09 February 2014, 02:05:13 UTC
c0bc0b4 Issue #20500: Note other public APIs with the new assertion 09 February 2014, 02:00:01 UTC
0c3949c asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent Process and Popen objects 09 February 2014, 01:51:40 UTC
313f829 asyncio: Test fix. 09 February 2014, 01:35:09 UTC
3d7b364 Note the new debug assertion in PyObject_Str 09 February 2014, 00:57:34 UTC
d979e43 Close #20500: Don't trigger PyObject_Str assertion at shutdown 09 February 2014, 00:43:21 UTC
c9d1a6b merge 09 February 2014, 00:36:57 UTC
back to top