summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Rebuild pydoc topics.Larry Hastings2014-05-181-78/+78
| | |/
| | * Merge.Larry Hastings2014-05-1869-4598/+5120
| | |\
| | * | Post-release version bump for 3.4.1rc1. Sorry it's late!Larry Hastings2014-05-182-1/+13
| | | |
| | * | Added tag v3.4.1rc1 for changeset c67a19e11a71Larry Hastings2014-05-041-0/+1
| | | |
| | * | Version bump for 3.4.1rc1.v3.4.1rc1Larry Hastings2014-05-046-86/+86
| | | |
* | | | Add development comments to setobject.cRaymond Hettinger2014-05-181-8/+15
| | | |
* | | | Add comment and make minor code clean-up to improve clarity.Raymond Hettinger2014-05-181-3/+13
|/ / /
* | | (null merge 3.4)Benjamin Peterson2014-05-180-0/+0
|\ \ \ | | |/ | |/|
| * | Upgrade pip to 1.5.6Donald Stufft2014-05-172-1/+1
| | |
* | | Issue #21430: additions to the description of non-blocking SSL socketsAntoine Pitrou2014-05-171-1/+7
|\ \ \ | |/ /
| * | Issue #21430: additions to the description of non-blocking SSL socketsAntoine Pitrou2014-05-171-3/+20
| | |
* | | Issue #20186: memoryobject.c: add function signatures.Stefan Krah2014-05-171-5/+6
| | |
* | | merge 3.4 (#10744)Benjamin Peterson2014-05-175-15/+74
|\ \ \ | |/ /
| * | support pep 3118 format strings for ctypes objects with nontrivial shapes ↵Benjamin Peterson2014-05-175-15/+74
| | | | | | | | | | | | | | | | | | (closes #10744) Patch by Matti Picus.
* | | Miscellaneous corrections and updates to the OS X README file.Ned Deily2014-05-171-13/+17
|\ \ \ | |/ /
| * | Miscellaneous corrections and updates to the OS X README file.Ned Deily2014-05-171-13/+17
| | |
* | | Issue #21362: concurrent.futures does not validate that max_workers is properBrian Quinlan2014-05-174-0/+15
| | |
* | | Upgrade pip to 1.5.6Donald Stufft2014-05-172-1/+1
| | |
* | | Upgrade setuptools to 3.6Donald Stufft2014-05-172-1/+1
| | |
* | | 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
|\ \ \ | |/ /