| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | whatsnew: importlib deprecations. | R David Murray | 2014-02-22 | 1 | -4/+24 |
| | | | | | | This addresses issue #20199, if I got it right. The deprecation and replacement lists are based on the importlib documentation. | ||||
| * | asyncio.docs: Document subprocess_exec and subprocess_shell. Issue #20694. | Yury Selivanov | 2014-02-21 | 1 | -5/+49 |
| | | |||||
| * | asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue ↵ | Yury Selivanov | 2014-02-20 | 4 | -38/+49 |
| | | | | | #20706 | ||||
| * | asyncio.docs: Improve documentation of Streams. Issue #20696. | Yury Selivanov | 2014-02-20 | 1 | -29/+43 |
| | | |||||
| * | asyncio.docs: Document Error Handling API and asyncio.Handle | Yury Selivanov | 2014-02-20 | 1 | -2/+67 |
| | | |||||
| * | asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG | Victor Stinner | 2014-02-20 | 2 | -2/+1 |
| | | | | | env var), document the default debug mode | ||||
| * | asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. | Victor Stinner | 2014-02-19 | 3 | -4/+30 |
| | | | | | | | Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since Python startup, to be able to debug coroutines defined directly in the asyncio module. | ||||
| * | asyncio: document new create_unix_connection() and create_unix_server() methods | Victor Stinner | 2014-02-19 | 1 | -5/+38 |
| | | | | | of BaseEventLoop | ||||
| * | Mangle __parameters in __annotations__ dict properly. Issue #20625. | Yury Selivanov | 2014-02-18 | 1 | -0/+4 |
| | | |||||
| * | Issue #20493: Document that asyncio should not exceed one day | Victor Stinner | 2014-02-18 | 1 | -0/+4 |
| | | |||||
| * | Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon. | Victor Stinner | 2014-02-18 | 1 | -1/+1 |
| | | |||||
| * | Close #20652: asyncio doc: close the event loop in run_forever() example. Fix | Victor Stinner | 2014-02-17 | 1 | -3/+6 |
| | | | | | also typo. Patch written by Vajrasky Kok. | ||||
| * | Issue #20616: Add a format() method to tracemalloc.Traceback. | Victor Stinner | 2014-02-16 | 1 | -7/+24 |
| | | |||||
| * | ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if | Victor Stinner | 2014-02-13 | 1 | -0/+6 |
| | | | | | | the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families. | ||||
| * | merge with 3.3 | Georg Brandl | 2014-02-10 | 1 | -0/+1 |
| | | |||||
| * | Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. | Larry Hastings | 2014-02-10 | 4 | -11/+11 |
| | | |||||
| * | Issue #20517: Removed unnecessary new (short-lived) functions from PyErr. | Larry Hastings | 2014-02-10 | 2 | -41/+0 |
| | | |||||
| * | Issue #20517: Functions in the os module that accept two filenames | Larry Hastings | 2014-02-10 | 3 | -10/+67 |
| | | | | | | | 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. | ||||
| * | More complete documentation of event loops and policies. | Eli Bendersky | 2014-02-09 | 1 | -15/+54 |
| | | | | | | | | 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. | ||||
| * | Various formatting & grammar fixes in asyncio* docs. | Eli Bendersky | 2014-02-09 | 3 | -6/+6 |
| | | |||||
| * | Fix typo in library/ipc.rst | Eli Bendersky | 2014-02-09 | 1 | -1/+1 |
| | | |||||
| * | Issue #20500: clarify that invocation may be indirect | Nick Coghlan | 2014-02-09 | 1 | -2/+3 |
| | | |||||
| * | Issue #20500: Note other public APIs with the new assertion | Nick Coghlan | 2014-02-09 | 3 | -7/+18 |
| | | |||||
| * | asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent | Victor Stinner | 2014-02-09 | 1 | -5/+1 |
| | | | | | Process and Popen objects | ||||
| * | Note the new debug assertion in PyObject_Str | Nick Coghlan | 2014-02-09 | 2 | -0/+11 |
| | | |||||
| * | merge | Brian Curtin | 2014-02-09 | 1 | -1/+1 |
| |\ | |||||
| | * | asyncio doc: fix gather() doc | Victor Stinner | 2014-02-09 | 1 | -1/+1 |
| | | | |||||
| * | | Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com | Brian Curtin | 2014-02-09 | 4 | -7/+7 |
| |/ | |||||
| * | Tweaks to What's New and some referenced docs | Nick Coghlan | 2014-02-09 | 3 | -15/+40 |
| | | |||||
| * | Close #20563: Declare ipaddress API stable | Nick Coghlan | 2014-02-08 | 2 | -7/+11 |
| | | |||||
| * | merge from 3.3 | Senthil Kumaran | 2014-02-08 | 1 | -7/+8 |
| |\ | | | | | | | | | Include the mention of ResourceWarning being displayed by default by the test runner. Addressing #issue 20529 | ||||
| | * | Include the mention of ResourceWarning being displayed by default by the ↵ | Senthil Kumaran | 2014-02-08 | 1 | -7/+8 |
| | | | | | | | | | | | | | test runner. Addressing #issue 20529 | ||||
| * | | asyncio doc: document missing event loop methods | Victor Stinner | 2014-02-08 | 1 | -4/+86 |
| | | | |||||
| * | | asyncio doc: sort methods | Victor Stinner | 2014-02-08 | 1 | -5/+5 |
| | | | |||||
| * | | Close issue20534: all pickle protocols now supported. | Ethan Furman | 2014-02-08 | 1 | -3/+11 |
| | | | |||||
| * | | Close #20481: Disallow mixed type input in statistics | Nick Coghlan | 2014-02-08 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | The most appropriate coercion rules are not yet clear, so simply disallowing mixed type input for 3.4. (Committed on Steven's behalf) | ||||
| * | | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 2 | -17/+0 |
| | | | | | | | | | | | * Remove selectors.BaseSelector.resolution attribute * Remove asyncio.BaseEventLoop._granularity attribute | ||||
| * | | #20531: Revert e20f98a8ed71, the 3.4 version of the #19063 fix. | R David Murray | 2014-02-07 | 1 | -7/+1 |
| | | | |||||
| * | | asyncio doc: mention that asyncio is not thread-safe | Victor Stinner | 2014-02-07 | 1 | -0/+6 |
| | | | |||||
| * | | #20477: add examples of using the new contentmanager API. | R David Murray | 2014-02-07 | 3 | -0/+158 |
| | | | |||||
| * | | Fix empty strings to empty bytes objects. | Serhiy Storchaka | 2014-02-06 | 5 | -10/+11 |
| |\ \ | |/ | |||||
| | * | Fix empty strings to empty bytes objects. | Serhiy Storchaka | 2014-02-06 | 5 | -10/+11 |
| | | | |||||
| * | | Close issue20412: Updated Enum docs to have referencable Enum and IntEnum ↵ | Ethan Furman | 2014-02-06 | 1 | -5/+22 |
| | | | | | | | | | classes | ||||
| * | | Merge for issue #20488 | Brett Cannon | 2014-02-06 | 1 | -6/+8 |
| |\ \ | |/ | |||||
| | * | Issue #20488: Update docs to say importlib is *the* implementaiton of | Brett Cannon | 2014-02-06 | 1 | -6/+8 |
| | | | | | | | | | import and not *an* implementation. | ||||
| * | | Issue #6386: When executing a script that's a symlink, the directory | Brett Cannon | 2014-02-06 | 1 | -2/+8 |
| | | | | | | | | | | | | | | | where the symlink resolves to is added to sys.path, not the directory containing the symlink itself. Thanks to Sanko Resic for an initial attempt at the patch. | ||||
| * | | Issue #14455: fix handling of unsigned long long values for binary plist files | Ronald Oussoren | 2014-02-06 | 1 | -7/+0 |
| | | | | | | | | | | | | | | | | | | | | | Values in the range of an unsigned long long, but outside of the range of a signed long long were serialized as a negative value. Due to a bug in PyObjC my test scripts indicated that the previous behavior matched Apple's plist code, instead the handle large unsigned values correctly. The change to plistlib.py is from a patch by Serhiy. | ||||
| * | | #14515: clarify that TemporaryDirectory's __enter__ returns the name. | R David Murray | 2014-02-05 | 1 | -4/+6 |
| |\ \ | |/ | |||||
| | * | #14515: clarify that TemporaryDirectory's __enter__ returns the name. | R David Murray | 2014-02-05 | 1 | -4/+6 |
| | | | |||||
| * | | Add missing word ("thread") to sentence about call_soon_threadsafe. | Guido van Rossum | 2014-02-04 | 1 | -1/+1 |
| | | | |||||
