summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* null mergeNed Deily2014-09-190-0/+0
|\
| * Issue #15661: Update OS X installer welcome and readme files for 3.4.2.Ned Deily2014-09-195-86/+149
| | | | | | | | | | python.org OS X installers are now distributed as signed installer packages compatible with the Gatekeeper security feature.
* | Merge with 3.4Terry Jan Reedy2014-09-191-1/+1
|\ \ | |/
| * Update Idle's online doc url.Terry Jan Reedy2014-09-191-1/+1
| |
* | Issue #22420: Merge with 3.4Terry Jan Reedy2014-09-192-18/+17
|\ \ | |/
| * Issue #22420: Avoid 'write to None' crashes by using print instead.Terry Jan Reedy2014-09-192-18/+17
| | | | | | | | Change a couple of existing prints. Original patch by Serhiy Storchaka.
* | merge 3.4Benjamin Peterson2014-09-191-9/+18
|\ \ | |/
| * standardize pep 466 relnote styleBenjamin Peterson2014-09-191-11/+9
| |
| * remove extra letterBenjamin Peterson2014-09-191-1/+1
| |
| * whatsnew for pep 466 ssl backportBenjamin Peterson2014-09-191-0/+11
| |
* | Issue #22366: urllib.request.urlopen will accept a context object (SSLContext)Senthil Kumaran2014-09-194-2/+29
| | | | | | | | | | | | as an argument which will then used be for HTTPS connection. Patch by Alex Gaynor.
* | Issue #22378: socket module: add SO_MARK.Charles-François Natali2014-09-181-0/+3
| |
* | Closes #22436: Merged documentation update from 3.4.Vinay Sajip2014-09-181-2/+11
|\ \ | |/
| * Issue #22436: Improved documentation for getEffectiveLevel() and getLevelName().Vinay Sajip2014-09-181-2/+11
| |
* | merge from 3.4Senthil Kumaran2014-09-183-110/+128
|\ \ | |/ | | | | | | | | | | | | Issue #16827: Make Interpreter introduction section of the tutorial more focussed and move advanced section and customization information to a separate file called appendix. Patch credits: Jamayla Wiley, Ya-Ting Huang and James Brewer.
| * Issue #16827: Make Interpreter introduction section of the tutorial moreSenthil Kumaran2014-09-183-110/+128
| | | | | | | | | | | | | | focussed and move advanced section and customization information to a separate file called appendix. Patch credits: Jamayla Wiley, Ya-Ting Huang and James Brewer.
* | Issue #14824: Update Repr.repr_TYPE documentation to use correct name ↵Berker Peksag2014-09-181-3/+3
|\ \ | |/ | | | | | | | | mangling implementation. Patch by Chris Rebert.
| * Issue #14824: Update Repr.repr_TYPE documentation to use correct name ↵Berker Peksag2014-09-181-3/+3
| | | | | | | | | | | | mangling implementation. Patch by Chris Rebert.
* | Issue #21706: Add a versionchanged directive to the functional API docs.Berker Peksag2014-09-181-0/+3
| |
* | Issue #21391: Use os.path.abspath in the shutil module.Berker Peksag2014-09-182-3/+4
| |
* | Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an ↵Antoine Pitrou2014-09-183-91/+90
| | | | | | | | | | | | if-block if there is no else-clause. Original patch by Eugene Toder.
* | Issue #4180: The warnings registries are now reset when the filters are ↵Antoine Pitrou2014-09-184-9/+101
|\ \ | |/ | | | | modified.
| * Issue #4180: The warnings registries are now reset when the filters are ↵Antoine Pitrou2014-09-184-9/+101
| | | | | | | | modified.
* | (Merge 3.4) asyncio, Tulip issue 206: In debug mode, keep the callback in theVictor Stinner2014-09-172-17/+24
|\ \ | |/ | | | | representation of Handle and TimerHandle after cancel().
| * asyncio, Tulip issue 206: In debug mode, keep the callback in theVictor Stinner2014-09-172-17/+24
| | | | | | | | representation of Handle and TimerHandle after cancel().
* | Merge from 3.4Senthil Kumaran2014-09-174-1/+18
|\ \ | |/ | | | | Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes.
| * Merge from 3.3Senthil Kumaran2014-09-174-1/+18
| |\ | | | | | | | | | Issue #22419: Limit the length of incoming HTTP request in wsgiref server to 65536 bytes.
| | * Issue #22419: Limit the length of incoming HTTP request in wsgiref server to ↵Senthil Kumaran2014-09-174-1/+18
| | | | | | | | | | | | 65536 bytes.
* | | Merge from 3.4Senthil Kumaran2014-09-172-2/+4
|\ \ \ | |/ / | | | | | | Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
| * | Merge from 3.3Senthil Kumaran2014-09-172-2/+4
| |\ \ | | |/ | | | | | | Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all interfaces.
| | * Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all ↵Senthil Kumaran2014-09-172-2/+4
| | | | | | | | | | | | interfaces.
* | | Close issue21706: add 'start' parameter to functional APIEthan Furman2014-09-163-11/+80
| | |
* | | Issue21738: clarify usage of __new__ in Enum subclassesEthan Furman2014-09-161-6/+9
|\ \ \ | |/ /
| * | Issue21738: clarify usage of __new__ in Enum subclassesEthan Furman2014-09-161-6/+9
| | |
* | | consistently use _name_ and _value_; patch from Kiss GyorgyEthan Furman2014-09-161-5/+5
|\ \ \ | |/ /
| * | consistently use _name_ and _value_; patch from Kiss GyorgyEthan Furman2014-09-161-5/+5
| | |
* | | Replace bad ftp URLs in test_urllib2netAntoine Pitrou2014-09-171-34/+34
|\ \ \ | |/ /
| * | Replace bad ftp URLs in test_urllib2netAntoine Pitrou2014-09-171-34/+34
| | |
* | | Lax cookie parsing in http.cookies could be a security issue when combinedAntoine Pitrou2014-09-174-1/+16
|\ \ \ | |/ / | | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
| * | Lax cookie parsing in http.cookies could be a security issue when combinedAntoine Pitrou2014-09-174-1/+16
| |\ \ | | |/ | | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
| | * Lax cookie parsing in http.cookies could be a security issue when combinedAntoine Pitrou2014-09-174-1/+16
| | | | | | | | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
* | | Closes #21270 : We now override tuple methods in mock.call objects.Kushal Das2014-09-163-0/+19
| | |
* | | Merge fix for issue #22166 from 3.4Nick Coghlan2014-09-155-0/+102
|\ \ \ | |/ /
| * | Issue #22166: clear codec caches in test_codecsNick Coghlan2014-09-155-0/+102
| | |
* | | Closes #18159: ConfigParser getters not available on SectionProxyŁukasz Langa2014-09-153-88/+423
|\ \ \
| * | | Closes #18159: ConfigParser getters not available on SectionProxyŁukasz Langa2014-09-153-53/+386
| | | |
| * | | Fix full-stop whitespace in configparser docsŁukasz Langa2014-09-141-42/+44
| | | |
* | | | Restored re pickling test.Serhiy Storchaka2014-09-151-5/+9
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Restored re pickling test.Serhiy Storchaka2014-09-151-5/+9
| | |
* | | Issue #17095: merge from 3.4Ned Deily2014-09-141-14/+0
|\ \ \ | |/ /