Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #21503: Use test_both() consistently in test_importlib. | Eric Snow | 2014-05-16 | 30 | -429/+527 |
| | |||||
* | Fix a small typo in test_importlib. | Eric Snow | 2014-05-16 | 1 | -2/+2 |
| | |||||
* | Issue #13916: Fix surrogatepass error handler on Windows | Victor Stinner | 2014-05-16 | 2 | -6/+4 |
| | |||||
* | Merge with 3.4 | Terry Jan Reedy | 2014-05-16 | 1 | -29/+32 |
|\ | |||||
| * | Issue #18104: revise docstrings, remove obsolete comments. | Terry Jan Reedy | 2014-05-16 | 1 | -29/+32 |
| | | |||||
* | | Mention ipaddress improvements. | Antoine Pitrou | 2014-05-15 | 1 | -0/+15 |
| | | |||||
* | | Better organization of the what's new | Antoine Pitrou | 2014-05-15 | 1 | -17/+32 |
| | | |||||
* | | Issue #21364: remove recommendation of broken pattern. | Antoine Pitrou | 2014-05-15 | 1 | -15/+12 |
|\ \ | |/ | |||||
| * | Issue #21364: remove recommendation of broken pattern. | Antoine Pitrou | 2014-05-15 | 1 | -15/+12 |
| | | |||||
* | | Issue #20826: Optimize ipaddress.collapse_addresses(). | Antoine Pitrou | 2014-05-15 | 2 | -27/+28 |
| | | |||||
* | | Issue #21487: Optimize ipaddress.summarize_address_range() and ↵ | Antoine Pitrou | 2014-05-15 | 2 | -21/+10 |
| | | | | | | | | ipaddress.{IPv4Network,IPv6Network}.subnets(). | ||||
* | | Issue #21486: Optimize parsing of netmasks in ipaddress.IPv4Network and ↵ | Antoine Pitrou | 2014-05-15 | 2 | -79/+122 |
| | | | | | | | | ipaddress.IPv6Network. | ||||
* | | Issue #13916: Disallowed the surrogatepass error handler for non UTF-* | Serhiy Storchaka | 2014-05-15 | 3 | -4/+35 |
| | | | | | | | | encodings. | ||||
* | | Merge 3.4 | Victor Stinner | 2014-05-14 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #21488: Oops, the patch for codecs.encode/decode doc was written by | Victor Stinner | 2014-05-14 | 1 | -1/+0 |
| | | | | | | | | | | Berker Peksag (already present in Misc/ACKS). The issue was reported by Brad Aylsworth. | ||||
* | | Issue #20998: Fixed re.fullmatch() of repeated single character pattern | Serhiy Storchaka | 2014-05-14 | 5 | -19/+25 |
|\ \ | |/ | | | | | with ignore case. Original patch by Matthew Barnett. | ||||
| * | Issue #20998: Fixed re.fullmatch() of repeated single character pattern | Serhiy Storchaka | 2014-05-14 | 5 | -19/+25 |
| | | | | | | | | with ignore case. Original patch by Matthew Barnett. | ||||
* | | Issue #21075: fileinput.FileInput now reads bytes from standard stream if | Serhiy Storchaka | 2014-05-14 | 4 | -2/+17 |
|\ \ | |/ | | | | | binary mode is specified. Patch by Sam Kimbrel. | ||||
| * | Issue #21075: fileinput.FileInput now reads bytes from standard stream if | Serhiy Storchaka | 2014-05-14 | 4 | -2/+17 |
| | | | | | | | | binary mode is specified. Patch by Sam Kimbrel. | ||||
* | | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY() | Victor Stinner | 2014-05-14 | 7 | -59/+60 |
| | | | | | | | | | | Keep _Py_STRINGIZE() in PC/pyconfig.h to not introduce a dependency between pyconfig.h and pymacros.h. | ||||
* | | (Merge 3.4) Issue #21497: faulthandler functions now raise a better error if | Victor Stinner | 2014-05-14 | 2 | -0/+29 |
|\ \ | |/ | | | | | | | sys.stderr is None: RuntimeError("sys.stderr is None") instead of AttributeError("'NoneType' object has no attribute 'fileno'"). | ||||
| * | Issue #21497: faulthandler functions now raise a better error if sys.stderr is | Victor Stinner | 2014-05-14 | 2 | -0/+29 |
| | | | | | | | | | | None: RuntimeError("sys.stderr is None") instead of AttributeError("'NoneType' object has no attribute 'fileno'"). | ||||
* | | Issue #21488: Add support of keyword arguments for codecs.encode and ↵ | Victor Stinner | 2014-05-14 | 2 | -6/+22 |
| | | | | | | | | codecs.decode | ||||
* | | Merge 3.4 (I commited a patch to the wrong branch and then used hg backout) | Victor Stinner | 2014-05-14 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Backed out changeset 6ceedbd88b5f | Victor Stinner | 2014-05-14 | 2 | -22/+6 |
| | | |||||
| * | Issue #21488: Add support of keyword arguments for codecs.encode and ↵ | Victor Stinner | 2014-05-14 | 2 | -6/+22 |
| | | | | | | | | codecs.decode | ||||
* | | Merge 3.4: ignore change specific to 3.4 for #21488, I had a different patch ↵ | Victor Stinner | 2014-05-14 | 0 | -0/+0 |
|\ \ | |/ | | | | | for Python 3.5 | ||||
| * | Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword ↵ | Victor Stinner | 2014-05-14 | 2 | -4/+7 |
| | | | | | | | | | | | | support. Patch written by Brad Aylsworth. | ||||
* | | Merge: #21347: use string not list in shell=True example. | R David Murray | 2014-05-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #21347: use string not list in shell=True example. | R David Murray | 2014-05-14 | 1 | -1/+1 |
| | | | | | | | | Patch by Akira. | ||||
* | | merge | Raymond Hettinger | 2014-05-14 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Issue #21470: Do a better job seeding the random number generator | Raymond Hettinger | 2014-05-14 | 2 | -1/+6 |
| | | | | | | | | to fully cover its state space. | ||||
* | | Merge from 3.4 (for #21499). | Eric Snow | 2014-05-13 | 2 | -7/+10 |
|\ \ | |/ | |||||
| * | Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests. | Eric Snow | 2014-05-13 | 2 | -7/+10 |
| | | |||||
* | | Merge 3.4->default: Fix test-order-dependend asyncio test failure caused by ↵ | Guido van Rossum | 2014-05-13 | 1 | -6/+9 |
|\ \ | |/ | | | | | rev 2af5a52b9b87 (in this branch). | ||||
| * | Fix test-order-dependend asyncio test failure caused by rev ↵ | Guido van Rossum | 2014-05-13 | 1 | -6/+9 |
| | | | | | | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa. | ||||
* | | Merge from 3.4: | doko@ubuntu.com | 2014-05-13 | 2 | -1/+3 |
|\ \ | |/ | | | | | - Issue #17756: Fix test_code test when run from the installed location. | ||||
| * | - Issue #17756: Fix test_code test when run from the installed location. | doko@ubuntu.com | 2014-05-13 | 2 | -1/+3 |
| | | |||||
* | | Issue #19775: Add a samefile() method to pathlib Path objects. | Antoine Pitrou | 2014-05-13 | 4 | -0/+53 |
| | | | | | | | | Initial patch by Vajrasky Kok. | ||||
* | | Issue 21469: Minor code modernization (convert and/or expression to an ↵ | Raymond Hettinger | 2014-05-13 | 1 | -1/+1 |
| | | | | | | | | | | | | if/else expression). Suggested by: Tal Einat | ||||
* | | merge | Raymond Hettinger | 2014-05-13 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue 21469: Add missing news item | Raymond Hettinger | 2014-05-13 | 1 | -0/+4 |
| | | |||||
* | | merge | Raymond Hettinger | 2014-05-13 | 1 | -2/+9 |
|\ \ | |/ | |||||
| * | Issue 21469: Mitigate risk of false positives with robotparser. | Raymond Hettinger | 2014-05-13 | 1 | -2/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Repair the broken link to norobots-rfc.txt. * HTTP response codes >= 500 treated as a failed read rather than as a not found. Not found means that we can assume the entire site is allowed. A 5xx server error tells us nothing. * A successful read() or parse() updates the mtime (which is defined to be "the time the robots.txt file was last fetched"). * The can_fetch() method returns False unless we've had a read() with a 2xx or 4xx response. This avoids false positives in the case where a user calls can_fetch() before calling read(). * I don't see any easy way to test this patch without hitting internet resources that might change or without use of mock objects that wouldn't provide must reassurance. | ||||
* | | Merge doc change from 3.3 | Jason R. Coombs | 2014-05-13 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Merge doc change from 3.3 | Jason R. Coombs | 2014-05-13 | 1 | -2/+2 |
| |\ | |||||
| | * | Update docs to reflect resurrection of Setuptools over Distribute | Jason R. Coombs | 2014-05-13 | 1 | -2/+2 |
| | | | |||||
* | | | Merge from 3.4 (for #21226). | Eric Snow | 2014-05-13 | 5 | -4269/+4319 |
|\ \ \ | |/ / | |||||
| * | | Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. | Eric Snow | 2014-05-12 | 5 | -4269/+4319 |
| | | | |||||
* | | | (Merge 3.4) Issue #21398: Fix an unicode error in the pydoc pager when the | Victor Stinner | 2014-05-13 | 2 | -0/+6 |
|\ \ \ | |/ / | | | | | | | documentation contains characters not encodable to the stdout encoding. |