summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21503: Use test_both() consistently in test_importlib.Eric Snow2014-05-1630-429/+527
|
* Fix a small typo in test_importlib.Eric Snow2014-05-161-2/+2
|
* Issue #13916: Fix surrogatepass error handler on WindowsVictor Stinner2014-05-162-6/+4
|
* Merge with 3.4Terry Jan Reedy2014-05-161-29/+32
|\
| * Issue #18104: revise docstrings, remove obsolete comments.Terry Jan Reedy2014-05-161-29/+32
| |
* | Mention ipaddress improvements.Antoine Pitrou2014-05-151-0/+15
| |
* | Better organization of the what's newAntoine Pitrou2014-05-151-17/+32
| |
* | Issue #21364: remove recommendation of broken pattern.Antoine Pitrou2014-05-151-15/+12
|\ \ | |/
| * Issue #21364: remove recommendation of broken pattern.Antoine Pitrou2014-05-151-15/+12
| |
* | Issue #20826: Optimize ipaddress.collapse_addresses().Antoine Pitrou2014-05-152-27/+28
| |
* | Issue #21487: Optimize ipaddress.summarize_address_range() and ↵Antoine Pitrou2014-05-152-21/+10
| | | | | | | | ipaddress.{IPv4Network,IPv6Network}.subnets().
* | Issue #21486: Optimize parsing of netmasks in ipaddress.IPv4Network and ↵Antoine Pitrou2014-05-152-79/+122
| | | | | | | | ipaddress.IPv6Network.
* | Issue #13916: Disallowed the surrogatepass error handler for non UTF-*Serhiy Storchaka2014-05-153-4/+35
| | | | | | | | encodings.
* | Merge 3.4Victor Stinner2014-05-140-0/+0
|\ \ | |/
| * Issue #21488: Oops, the patch for codecs.encode/decode doc was written byVictor Stinner2014-05-141-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 patternSerhiy Storchaka2014-05-145-19/+25
|\ \ | |/ | | | | with ignore case. Original patch by Matthew Barnett.
| * Issue #20998: Fixed re.fullmatch() of repeated single character patternSerhiy Storchaka2014-05-145-19/+25
| | | | | | | | with ignore case. Original patch by Matthew Barnett.
* | Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-144-2/+17
|\ \ | |/ | | | | binary mode is specified. Patch by Sam Kimbrel.
| * Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-144-2/+17
| | | | | | | | binary mode is specified. Patch by Sam Kimbrel.
* | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner2014-05-147-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 ifVictor Stinner2014-05-142-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 isVictor Stinner2014-05-142-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 Stinner2014-05-142-6/+22
| | | | | | | | codecs.decode
* | Merge 3.4 (I commited a patch to the wrong branch and then used hg backout)Victor Stinner2014-05-140-0/+0
|\ \ | |/
| * Backed out changeset 6ceedbd88b5fVictor Stinner2014-05-142-22/+6
| |
| * Issue #21488: Add support of keyword arguments for codecs.encode and ↵Victor Stinner2014-05-142-6/+22
| | | | | | | | codecs.decode
* | Merge 3.4: ignore change specific to 3.4 for #21488, I had a different patch ↵Victor Stinner2014-05-140-0/+0
|\ \ | |/ | | | | for Python 3.5
| * Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword ↵Victor Stinner2014-05-142-4/+7
| | | | | | | | | | | | support. Patch written by Brad Aylsworth.
* | Merge: #21347: use string not list in shell=True example.R David Murray2014-05-141-1/+1
|\ \ | |/
| * #21347: use string not list in shell=True example.R David Murray2014-05-141-1/+1
| | | | | | | | Patch by Akira.
* | mergeRaymond Hettinger2014-05-141-1/+3
|\ \ | |/
| * Issue #21470: Do a better job seeding the random number generatorRaymond Hettinger2014-05-142-1/+6
| | | | | | | | to fully cover its state space.
* | Merge from 3.4 (for #21499).Eric Snow2014-05-132-7/+10
|\ \ | |/
| * Issue #21499: Ignore __builtins__ in several test_importlib.test_api tests.Eric Snow2014-05-132-7/+10
| |
* | Merge 3.4->default: Fix test-order-dependend asyncio test failure caused by ↵Guido van Rossum2014-05-131-6/+9
|\ \ | |/ | | | | rev 2af5a52b9b87 (in this branch).
| * Fix test-order-dependend asyncio test failure caused by rev ↵Guido van Rossum2014-05-131-6/+9
| | | | | | | | 909ea8cc86bbab92dbb6231668f403b7360f30fa.
* | Merge from 3.4:doko@ubuntu.com2014-05-132-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.com2014-05-132-1/+3
| |
* | Issue #19775: Add a samefile() method to pathlib Path objects.Antoine Pitrou2014-05-134-0/+53
| | | | | | | | Initial patch by Vajrasky Kok.
* | Issue 21469: Minor code modernization (convert and/or expression to an ↵Raymond Hettinger2014-05-131-1/+1
| | | | | | | | | | | | if/else expression). Suggested by: Tal Einat
* | mergeRaymond Hettinger2014-05-131-0/+4
|\ \ | |/
| * Issue 21469: Add missing news itemRaymond Hettinger2014-05-131-0/+4
| |
* | mergeRaymond Hettinger2014-05-131-2/+9
|\ \ | |/
| * Issue 21469: Mitigate risk of false positives with robotparser.Raymond Hettinger2014-05-131-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.3Jason R. Coombs2014-05-131-2/+2
|\ \ | |/
| * Merge doc change from 3.3Jason R. Coombs2014-05-131-2/+2
| |\
| | * Update docs to reflect resurrection of Setuptools over DistributeJason R. Coombs2014-05-131-2/+2
| | |
* | | Merge from 3.4 (for #21226).Eric Snow2014-05-135-4269/+4319
|\ \ \ | |/ /
| * | Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject.Eric Snow2014-05-125-4269/+4319
| | |
* | | (Merge 3.4) Issue #21398: Fix an unicode error in the pydoc pager when theVictor Stinner2014-05-132-0/+6
|\ \ \ | |/ / | | | | | | documentation contains characters not encodable to the stdout encoding.