Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix the doc: add deprecation warning in select module. | Andrew Svetlov | 2014-03-31 | 1 | -1/+5 |
| | |||||
* | Issue #21073: explain why Py_ReprEnter() allows for a missing thread state. | Antoine Pitrou | 2014-03-31 | 1 | -0/+2 |
| | |||||
* | use https docs url | Benjamin Peterson | 2014-03-31 | 1 | -2/+2 |
| | |||||
* | merge 3.3 (#21115) | Benjamin Peterson | 2014-03-31 | 1 | -2/+2 |
|\ | |||||
| * | merge 3.2 | Benjamin Peterson | 2014-03-31 | 1 | -2/+2 |
| |\ | |||||
| | * | use https docs url (#21115) | Benjamin Peterson | 2014-03-31 | 1 | -2/+2 |
| | | | |||||
* | | | Issue #20668: Remove tests.txt of test_asyncio | Victor Stinner | 2014-03-31 | 1 | -14/+0 |
| | | | | | | | | | | | | It's useless, tests are now discovered automatically. | ||||
* | | | merge 3.3 | Benjamin Peterson | 2014-03-31 | 1 | -0/+1 |
|\ \ \ | |/ / | |||||
| * | | merge 3.2 | Benjamin Peterson | 2014-03-31 | 1 | -0/+1 |
| |\ \ | | |/ | |||||
| | * | add Ian Beer | Benjamin Peterson | 2014-03-31 | 1 | -0/+1 |
| | | | |||||
* | | | merge 3.3 | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
|\ \ \ | |/ / | |||||
| * | | merge 3.2 | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
| |\ \ | | |/ | |||||
| | * | fix expandtabs overflow detection to be consistent and not rely on signed ↵ | Benjamin Peterson | 2014-03-30 | 1 | -19/+19 |
| | | | | | | | | | | | | overflow | ||||
* | | | update notes to talk about -X showrefcount | Benjamin Peterson | 2014-03-30 | 1 | -3/+5 |
| | | | |||||
* | | | Add test case for freeze. | Martin v. Löwis | 2014-03-30 | 3 | -0/+15 |
| | | | |||||
* | | | Issue #16047: Fix module exception list and __file__ handling in freeze. | Martin v. Löwis | 2014-03-30 | 4 | -4/+16 |
| | | | | | | | | | | | | Patch by Meador Inge. | ||||
* | | | make partialmethod example work (closes #21105) | Benjamin Peterson | 2014-03-30 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #11824: Consider ABI tags in freeze. Patch by Meador Inge. | Martin v. Löwis | 2014-03-30 | 2 | -4/+8 |
| | | | |||||
* | | | Fix doc typo. | Guido van Rossum | 2014-03-30 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #21097: Move test_namespace_pkgs into test_importlib. | Eric Snow | 2014-03-29 | 16 | -0/+2 |
| | | | |||||
* | | | Minor readability improvement. | Raymond Hettinger | 2014-03-29 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #21093: Prevent failures of ctypes test_macholib on OS X if a | Ned Deily | 2014-03-29 | 2 | -2/+8 |
| | | | | | | | | | | | | copy of libz exists in $HOME/lib or /usr/local/lib. | ||||
* | | | Issue #19697: document more __main__.__spec__ quirks | Nick Coghlan | 2014-03-29 | 1 | -2/+16 |
| | | | |||||
* | | | Fix another old mention of "Standard Edition" VS in PCbuild/readme.txt. | Zachary Ware | 2014-03-29 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | Also removes a mention of using "Express Edition with the Windows SDK 64-bit compilers" to build 64-bit Python. If that can be made to work, it will need some extra instructions somewhere. | ||||
* | | | Issue #19697: Document cases where __main__.__spec__ is None. | Eric Snow | 2014-03-29 | 2 | -1/+43 |
| | | | |||||
* | | | Issue 21014: Use booleans instead of 0 and 1 in examples. | Raymond Hettinger | 2014-03-28 | 2 | -2/+2 |
| | | | |||||
* | | | undefine SET_SYS_FROM_STRING_BORROW after its done being used (closes #21089) | Benjamin Peterson | 2014-03-28 | 1 | -0/+1 |
| | | | |||||
* | | | Doc: do not compress .epub for dist, it is already zipped. | Georg Brandl | 2014-03-28 | 2 | -10/+4 |
| | | | |||||
* | | | Issue #17654: Ensure IDLE menus are customized properly on OS X for | Ned Deily | 2014-03-28 | 12 | -93/+129 |
| | | | | | | | | | | | | non-framework builds and for all variants of Tk. | ||||
* | | | Issue #6676: Ensure a meaningful exception is raised when attempting | Ned Deily | 2014-03-27 | 4 | -2/+26 |
| | | | | | | | | | | | | | | | | | | to parse more than one XML document per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge) | ||||
* | | | inspect: Fix getcallargs() to fail correctly if more than 3 args are missing. | Yury Selivanov | 2014-03-27 | 3 | -1/+10 |
| | | | | | | | | | | | | Patch by Jeremiah Lowin. Closes #20817. | ||||
* | | | inspect: Fix getcallargs() to raise correct TypeError | Yury Selivanov | 2014-03-27 | 3 | -1/+12 |
| | | | | | | | | | | | | | | | ... for missing keyword-only arguments. Patch by Jeremiah Lowin. Closes #20816. | ||||
* | | | asyncio.tests: Autodiscover asyncio tests. Patch by Vajrasky Kok. Closes #20668 | Yury Selivanov | 2014-03-27 | 2 | -12/+13 |
| | | | |||||
* | | | Issue #21069: Temporarily use www.google.com while investigating | Ned Deily | 2014-03-27 | 1 | -1/+1 |
| | | | | | | | | | | | | test_urllibnet.test_fileno intermittent failures with www.example.com. | ||||
* | | | Issue #20939: remove stray character from comment | Ned Deily | 2014-03-27 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #20939: Use www.example.com instead of www.python.org to avoid test | Ned Deily | 2014-03-27 | 5 | -20/+26 |
| | | | | | | | | | | | | failures when ssl is not present. | ||||
* | | | Issue #20939: Backout test_urllib2.test_issue16464 disables: | Ned Deily | 2014-03-27 | 1 | -6/+0 |
| | | | | | | | | | | | | | | | 68335b8afb1f 3.4 ad0c75b7bd7d default | ||||
* | | | backport: #20145: assert[Raises|Warns]Regex now raise TypeError on bad regex. | R David Murray | 2014-03-25 | 4 | -1/+17 |
| | | | | | | | | | | | | | | | | | | | | | Previously a non-string, non-regex second argument and missing callable argument could cause the test to appear to always pass. Initial patch by Kamilla Holanda. | ||||
* | | | Issue #21058: fix typo in a comment. Patch written by Vajrasky Kok. | Victor Stinner | 2014-03-25 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #21038: Use monotonic clock to compute timeout, not the system clock | Victor Stinner | 2014-03-25 | 1 | -8/+8 |
| | | | |||||
* | | | Issue #21038: Cleanup test_epoll.py | Victor Stinner | 2014-03-25 | 1 | -3/+0 |
| | | | | | | | | | | | | Remove useless test and unused variables. Initial patch by Andreas Schwab. | ||||
* | | | Issue #12209: Minor edits to faulthandler doc. Patch written by Éric Araujo. | Victor Stinner | 2014-03-25 | 1 | -11/+17 |
| | | | |||||
* | | | Updated external link in documentation. | Vinay Sajip | 2014-03-25 | 1 | -1/+1 |
| | | | |||||
* | | | Closes #21045: make the Qt help build not look completely stupid | Georg Brandl | 2014-03-25 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #21006: asyncio doc: reorganize subprocess doc | Victor Stinner | 2014-03-25 | 2 | -84/+94 |
| | | | |||||
* | | | Closes #18456: Doc fix: PyDict_Update only works with dict-like objects, not ↵ | Georg Brandl | 2014-03-25 | 1 | -2/+5 |
| | | | | | | | | | | | | key-value sequences. Patch by priyapappachan. | ||||
* | | | Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(), | Victor Stinner | 2014-03-25 | 3 | -3/+35 |
| | | | | | | | | | | | | close the file descriptor if io.open() fails | ||||
* | | | asyncio: Ensure call_soon(), call_later() and call_at() are invoked on current | Victor Stinner | 2014-03-21 | 2 | -1/+45 |
| | | | | | | | | | | | | | | | | | | loop in debug mode. Raise a RuntimeError if the event loop of the current thread is different. The check should help to debug thread-safetly issue. Patch written by David Foster. | ||||
* | | | Issue #21043: Remove the recommendation for specific CA organizations | Donald Stufft | 2014-03-24 | 2 | -14/+6 |
| | | | | | | | | | | | | | | | | | | | | | Closes #21043 by updating the documentation to remove specific CA organizations and update the text to no longer need to tell you to download root certificates, but instead use the OS certificates avaialble through SSLContext.load_default_certs. | ||||
* | | | Issue #21036: Fix typo in macro name | Victor Stinner | 2014-03-24 | 3 | -6/+6 |
| | | | | | | | | | | | | _PY_HASHTABLE_ENTRY_DATA => _Py_HASHTABLE_ENTRY_DATA |