summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | clear BufferedRWPair weakrefs on deallocation (closes #22517)Benjamin Peterson2014-09-303-0/+11
| |
* | these variables ought to be Py_ssize_tBenjamin Peterson2014-09-291-1/+1
| |
* | fix overflow checking in PyBytes_Repr (closes #22519)Benjamin Peterson2014-09-292-12/+18
| |
* | NEWS issue for #22518Benjamin Peterson2014-09-291-0/+2
| |
* | cleanup overflowing handling in unicode_decode_call_errorhandler and ↵Benjamin Peterson2014-09-291-18/+56
| | | | | | | | unicode_encode_ucs1 (closes #22518)
* | Issue #22419: Limit the length of incoming HTTP request in wsgiref server to ↵Senthil Kumaran2014-09-174-1/+18
| | | | | | | | 65536 bytes.
* | Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all ↵Senthil Kumaran2014-09-172-2/+4
| | | | | | | | interfaces.
* | Lax cookie parsing in http.cookies could be a security issue when combinedAntoine Pitrou2014-09-164-1/+16
| | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov.
* | Issue #13540: Merge changes from 3.2Jason R. Coombs2014-08-031-19/+53
|\ \ | |/
| * Issue #13540: Update references to Action class to match syntax used for ↵Jason R. Coombs2014-08-031-2/+2
| | | | | | | | other classes in this file.
| * Issue #13540: Removed redundant documentation about Action instance ↵Jason R. Coombs2014-07-201-49/+26
| | | | | | | | attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524.
| * Issue #13540: Expanded argparse documents to clarify the action APIJason R. Coombs2011-12-141-19/+76
| |
* | Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-134-5/+25
|\ \ | |/ | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
| * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-134-5/+25
| | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
* | Closes #20872: dbm/gdbm/ndbm close methods are not documentedJesus Cea2014-06-251-2/+16
| |
* | Closes #21441: Reorder elements in documentation to match actual order in ↵Jesus Cea2014-06-251-10/+10
| | | | | | | | the code
* | merge 3.2Benjamin Peterson2014-06-171-1/+1
|\ \ | |/
| * expect the correct platform-dependent linesepBenjamin Peterson2014-06-171-1/+1
| |
* | merge 3.2 (#21766)Benjamin Peterson2014-06-153-1/+9
|\ \ | |/
| * url unquote the path before checking if it refers to a CGI script (closes ↵Benjamin Peterson2014-06-153-1/+9
| | | | | | | | #21766)
* | Update docs to reflect resurrection of Setuptools over DistributeJason R. Coombs2014-05-131-2/+2
| |
* | The PyCOND_TIMEDWAIT must use microseconds for the timeout argumentKristján Valur Jónsson2014-05-082-7/+7
| | | | | | | | | | | | | | | | in order to have the same resolution as pthreads condition variables. At the same time, it must be large enough to accept 31 bits of milliseconds, which is the maximum timeout value in the windows API. A PY_LONG_LONG of microseconds fullfills both requirements. This closes issue #20737
* | - Issue #17752: Fix distutils tests when run from the installed location.doko@ubuntu.com2014-05-074-13/+15
| |
* | Document the subprocess Popen.args attribute (issue21353)Gregory P. Smith2014-04-291-0/+6
| |
* | merge 3.2Benjamin Peterson2014-04-140-0/+0
|\ \ | |/
| * fix poor spellingBenjamin Peterson2014-04-141-1/+1
| |
* | merge 3.2Benjamin Peterson2014-04-141-4/+5
|\ \ | |/
| * disallow a negative idx parameterBenjamin Peterson2014-04-141-4/+5
| |
* | merge 3.2Benjamin Peterson2014-04-144-1/+12
|\ \ | |/
| * in scan_once, prevent the reading of arbitrary memory when passed a negative ↵Benjamin Peterson2014-04-144-1/+12
| | | | | | | | | | | | index Bug reported by Guido Vranken.
* | minor docfix (reported at docs@python.org) trace.py argument is --count not ↵Senthil Kumaran2014-04-061-2/+2
| | | | | | | | --counts
* | merge 3.2Benjamin Peterson2014-04-040-0/+0
|\ \ | |/
| * fix versionchanged versionBenjamin Peterson2014-04-041-2/+2
| |
* | merge 3.2 (#21082)Benjamin Peterson2014-04-014-34/+20
|\ \ | |/
| * remove directory mode check from makedirs (closes #21082)Benjamin Peterson2014-04-014-32/+20
| |
* | merge 3.2Benjamin Peterson2014-03-311-2/+2
|\ \ | |/
| * use https docs url (#21115)Benjamin Peterson2014-03-311-2/+2
| |
* | merge 3.2Benjamin Peterson2014-03-311-0/+1
|\ \ | |/
| * add Ian BeerBenjamin Peterson2014-03-311-0/+1
| |
* | merge 3.2Benjamin Peterson2014-03-301-19/+19
|\ \ | |/
| * fix expandtabs overflow detection to be consistent and not rely on signed ↵Benjamin Peterson2014-03-301-19/+19
| | | | | | | | overflow
* | Issue #20633: Replace relative import by absolute import.Richard Oudkerk2014-03-232-1/+3
| |
* | Update doc version switcher for 3.4/3.5.Georg Brandl2014-03-171-1/+2
| |
* | improve set_tunnel docs (closes #11448)Benjamin Peterson2014-03-161-4/+18
| | | | | | | | Patch by Ryan Kelly, karl, and Nikolaus Rath.
* | fix ctypes test alignment assumptions (closes #20946)Benjamin Peterson2014-03-164-12/+14
| | | | | | | | Patch by Andreas Schwab.
* | Close #16665: improve documentation for hex(). Patch by Jessica McKellar.Antoine Pitrou2014-03-161-3/+13
| |
* | send people to the right editors page (#20938)Benjamin Peterson2014-03-151-1/+2
| |
* | Issue #20939: Fix test_geturl failure in test_urllibnet due toNed Deily2014-03-152-1/+7
| | | | | | | | new redirect of http://www.python.org/ to https://www.python.org.
* | remove runtime_library_dirs for _sqlite; it isn't neededBenjamin Peterson2014-03-151-1/+0
| |
* | avoid referencing past the bounds of an arrayBenjamin Peterson2014-03-151-1/+1
| |