summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * | Issue #21488: Oops, the patch for codecs.encode/decode doc was written byVictor Stinner2014-05-141-1/+0
* | | Issue #20998: Fixed re.fullmatch() of repeated single character patternSerhiy Storchaka2014-05-145-19/+25
|\ \ \ | |/ /
| * | Issue #20998: Fixed re.fullmatch() of repeated single character patternSerhiy Storchaka2014-05-145-19/+25
* | | Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-144-2/+17
|\ \ \ | |/ /
| * | Issue #21075: fileinput.FileInput now reads bytes from standard stream ifSerhiy Storchaka2014-05-144-2/+17
* | | Issue #21490: Add new C macros: Py_ABS() and Py_STRINGIFY()Victor Stinner2014-05-147-59/+60
* | | (Merge 3.4) Issue #21497: faulthandler functions now raise a better error ifVictor Stinner2014-05-142-0/+29
|\ \ \ | |/ /
| * | Issue #21497: faulthandler functions now raise a better error if sys.stderr isVictor Stinner2014-05-142-0/+29
* | | Issue #21488: Add support of keyword arguments for codecs.encode and codecs.d...Victor Stinner2014-05-142-6/+22
* | | 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 codecs.d...Victor Stinner2014-05-142-6/+22
* | | Merge 3.4: ignore change specific to 3.4 for #21488, I had a different patch ...Victor Stinner2014-05-140-0/+0
|\ \ \ | |/ /
| * | Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword supp...Victor Stinner2014-05-142-4/+7
* | | 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
* | | mergeRaymond Hettinger2014-05-141-1/+3
|\ \ \ | |/ /
| * | Issue #21470: Do a better job seeding the random number generatorRaymond Hettinger2014-05-142-1/+6
* | | 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 r...Guido van Rossum2014-05-131-6/+9
|\ \ \ | |/ /
| * | Fix test-order-dependend asyncio test failure caused by rev 909ea8cc86bbab92d...Guido van Rossum2014-05-131-6/+9
* | | Merge from 3.4:doko@ubuntu.com2014-05-132-1/+3
|\ \ \ | |/ /
| * | - 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
* | | Issue 21469: Minor code modernization (convert and/or expression to an if/el...Raymond Hettinger2014-05-131-1/+1
* | | 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
* | | 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
|\ \ \ \ | |/ / /
| * | | Issue #21398: Fix an unicode error in the pydoc pager when the documentationVictor Stinner2014-05-132-0/+6
* | | | (Merge 3.4) Issue #21418: Fix a crash in the builtin function super() whenVictor Stinner2014-05-122-2/+12
|\ \ \ \ | |/ / /
| * | | Issue #21418: Fix a crash in the builtin function super() when called withoutVictor Stinner2014-05-122-2/+12
* | | | (Merge 3.4) Issue #21485: remove unnecesary .flush() calls in the asyncioVictor Stinner2014-05-121-3/+1
|\ \ \ \ | |/ / /
| * | | Issue #21485: remove unnecesary .flush() calls in the asyncio subprocess codeVictor Stinner2014-05-121-3/+1
* | | | (Merge 3.4) Issue #21422: Add a test to check that bool << int and bool >> intVictor Stinner2014-05-121-0/+7
|\ \ \ \ | |/ / /
| * | | Issue #21422: Add a test to check that bool << int and bool >> int return an intVictor Stinner2014-05-121-0/+7
* | | | Issue #16531: ipaddress.IPv4Network and ipaddress.IPv6Network now accept an (...Antoine Pitrou2014-05-124-21/+210
* | | | Merge 3.4->default: asyncio: Fix upstream issue 168: StreamReader.read(-1) fr...Guido van Rossum2014-05-122-6/+47
|\ \ \ \ | |/ / /
| * | | asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if ...Guido van Rossum2014-05-122-6/+47
* | | | Issue 21383: merge from 3.4Ned Deily2014-05-121-0/+1
|\ \ \ \ | |/ / /
| * | | Issue #21383: Allow "make touch" to work when building outside of theNed Deily2014-05-121-0/+1
* | | | Issue #18104: News for 3.4, in proper place.Terry Jan Reedy2014-05-121-0/+4
* | | | #18104: null merge of 3.4 News entryTerry Jan Reedy2014-05-120-0/+0
|\ \ \ \ | |/ / /