https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
d5c5976 Version bump for 3.4.0rc3. 09 March 2014, 11:13:05 UTC
a3188ef Update pydoc topics and suspicious filters. 09 March 2014, 11:12:12 UTC
62b4b9e Close #20839: pkgutil.find_loader now uses importlib.util.find_spec 04 March 2014, 10:39:42 UTC
01cc2d5 Issue20653: fix ReST for Enum 03 March 2014, 23:02:04 UTC
2da9504 Close issue20653: improve functional API docs; minor code changes 03 March 2014, 20:42:52 UTC
adb2e2a Close #20814: doc: Fix "Pretty top" example of tracemalloc 03 March 2014, 10:57:57 UTC
0c3ea09 Issue #14512: Launch pydoc -b instead of pydocgui.pyw on Windows. 02 March 2014, 19:29:18 UTC
a663069 Issue #20465: Update Windows installer to SQLite 3.8.3.1. 02 March 2014, 18:42:50 UTC
582538b Issue #20748: Uninstalling pip does not leave behind the pyc of the uninstaller anymore. 02 March 2014, 18:29:19 UTC
75512c4 Issue #20568: Fix typo in pip option. 02 March 2014, 18:15:47 UTC
d930d85 Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ 02 March 2014, 17:25:27 UTC
90c5c8a Issue #20465: fix NEWS typo (it's 3.8.3.1) 01 March 2014, 22:04:48 UTC
c1195c7 Issue #20465: Update OS X installer build to use SQLite 3.8.0.1. 01 March 2014, 22:00:46 UTC
07d843a Close #20568: install unversioned pip command on Windows 28 February 2014, 13:37:35 UTC
a46cf12 Close #20757: return success for skipped pip uninstall The 3.4rc2 Windows uninstaller would fail if pip had been updated to a version that didn't match the version installed by ensurepip. This skip is no longer treated as an error, so an updated pip ends up being handled like any other pip installed package and is left alone by the CPython uninstaller. 28 February 2014, 13:35:05 UTC
26dd0ff Issue #20763: Fix importlib.machinery.PathFinder to support PathEntryFinder instances which only define find_module(). Reported by Yukihiro Nakadaira. 26 February 2014, 23:26:49 UTC
d44cebb Issue #20599: Don't clear environment in test_cleanup() of test_builtin 13 February 2014, 09:54:32 UTC
8ebe532 Issue #20599: Force ASCII encoding for stdout in test_cleanup() of test_builtin On Windows, the codec of sys.stdout is implemented in Python. At exit, the codec may be unloaded before the destructor tries to write something to sys.stdout. 12 February 2014, 17:27:55 UTC
f86b433 Try to fix test_cleanup (issue #20599). 12 February 2014, 10:40:22 UTC
3b4ce69 Issue #19255: Clear error after failed PyDict_SetItem() on shutdown. This silences a Coverity complain. 12 February 2014, 07:55:45 UTC
e0a976c Temporary silence test broken by issue19255. Remove unused variables. 10 February 2014, 17:09:19 UTC
013bb91 Issue #19255: The builtins module is restored to initial value before cleaning other modules. The sys and builtins modules are cleaned last. 10 February 2014, 16:21:34 UTC
7614122 Added tag v3.4.0rc2 for changeset a300712ed38c 23 February 2014, 08:18:41 UTC
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
back to top