summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* #16611: BaseCookie now parses 'secure' and 'httponly' flags.R David Murray2013-08-251-0/+3
| | | | | | | | | | | | | Previously it generated them if they were given a value, but completely ignored them if they were present in the string passed in to be parsed. Now if the flag appears on a cookie, the corresponding Morsel key will reference a True value. Other pre-existing behavior is retained in this maintenance patch: if the source contains something like 'secure=foo', morsel['secure'] will return 'foo'. Since such a value doesn't round trip and never did (and would be a surprising occurrence) a subsequent non-bug-fix patch may change this behavior. Inspired by a patch from Julien Phalip, who reviewed this one.
* Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-0/+3
| | | | properly handled as unsigned.
* Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-1/+1
| | | | thanks to Vajrasky Kok for proof-reading.
* Close #17702: On error, os.environb now removes suppress the except contextVictor Stinner2013-08-231-0/+3
| | | | when raising a new KeyError with the original key.
* NEW entry for issue #18755Brett Cannon2013-08-231-0/+3
|
* Issue #16809: Fixed some tkinter incompabilities with Tcl/Tk 8.6.Serhiy Storchaka2013-08-221-0/+2
|
* Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-0/+3
| | | | | | argument. This is needed for support Tcl/Tk 8.6.
* Issue #18747: Update Misc/NEWS to reflect the latest changeset.Christian Heimes2013-08-221-1/+1
|
* #18324: set_payload now correctly handles binary input.R David Murray2013-08-221-0/+3
| | | | | | | | | | | This also backs out the previous fixes for for #14360, #1717, and #16564. Those bugs were actually caused by the fact that set_payload didn't decode to str, thus rendering the model inconsistent. This fix does mean the data processed by the encoder functions goes through an extra encode/decode cycle, but it means the model is always consistent. Future API updates will provide a better way to encode payloads, which will bypass this minor de-optimization. Tests by Vajrasky Kok.
* Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as ↵Antoine Pitrou2013-08-211-0/+4
| | | | possible, since "localhost" goes through a DNS lookup under recent Windows versions.
* Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-0/+3
| | | | in the tkinter module.
* Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+4
| | | | | A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data.
* Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-202-0/+4
| | | | RuntimeError exception. Patch by Christian Schubert.
* Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-0/+3
| | | | Patch by Yogesh Chaudhari.
* Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-0/+3
| | | | OpenSSL 1.0.0+ instead of the deprecated CRYPTO id callback function.
* add missing #Christian Heimes2013-08-181-1/+1
|
* Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-0/+2
|
* #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
|
* Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ↵Christian Heimes2013-08-171-0/+3
| | | | malloc weak symbols.
* mergeChristian Heimes2013-08-161-0/+7
|\
| * Issue #18756: Improve error reporting in os.urandom() when the failure is ↵Antoine Pitrou2013-08-161-0/+4
| | | | | | | | due to something else than /dev/urandom not existing.
| * Issue #1666318: Add a test that shutil.copytree() retains directory permissions.Antoine Pitrou2013-08-161-0/+3
| | | | | | | | Patch by Catherine Devlin.
* | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-0/+6
|/ | | | | | | inside subjectAltName correctly. Formerly the module has used OpenSSL's GENERAL_NAME_print() function to get the string represention of ASN.1 strings for rfc822Name (email), dNSName (DNS) and uniformResourceIdentifier (URI).
* issue #18698: ensure importlib.reload() returns the module out of sys.modules.Eric Snow2013-08-151-0/+2
|
* Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
|
* Issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2
|
* Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+2
|
* Issue #18676: Change 'positive' to 'non-negative' in queue.py put and getTerry Jan Reedy2013-08-102-0/+4
| | | | docstrings and ValueError messages. Patch by Zhongyue Luo
* Issue #18429: Add user-oriented News entry about Format / Format ParagraphTerry Jan Reedy2013-08-101-0/+4
| | | | now working with comment block selections. Patch was part of 18226 patch.
* Issue #18226: Add docstrings and unittests for idlelib/FormatParagraph.py.Terry Jan Reedy2013-08-101-0/+3
| | | | | Move comment code to a separate function so it can be separately tested. Original patches by Todd Rovito and Phil Webster.
* #18681: Fix a NameError in imp.reload() (noticed by Weizhao Li).Ezio Melotti2013-08-101-0/+2
|
* #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-101-0/+3
| | | | | | | Before this patch it would raise an error when trying to display documentation for a method that used annotations. Patch by Claudiu Popa.
* #18357: add tests for dictview set difference. Patch by Fraser Tweedale.Ezio Melotti2013-08-082-0/+4
|
* #18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make ↵Ezio Melotti2013-08-081-0/+3
| | | | them discoverable by unittest. Patch by Zachary Ware.
* Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.Christian Heimes2013-08-061-0/+3
|
* #18657: remove duplicate entries from Misc/ACKS.R David Murray2013-08-041-3/+0
| | | | Patch by Madison May.
* Merge headsSerhiy Storchaka2013-08-031-0/+2
|\
| * Issue #16067: Add description into MSI file to replace installer's temporary ↵Martin v. Löwis2013-08-031-0/+2
| | | | | | | | name.
* | Issue #16741: Fix an error reporting in int().Serhiy Storchaka2013-08-031-0/+2
|/
* Issue #17998: Fix an internal error in regular expression engine.Serhiy Storchaka2013-08-031-0/+2
|
* - Fix a fcntl test case on KFreeBSD, Debian #708653 (Petr Salinger).doko@ubuntu.com2013-08-031-0/+2
|
* Close #18396: fix spurious test_signal failure on WindowsNick Coghlan2013-08-031-0/+3
| | | | | signal.getsignal returns None for some signals if faulthandler is enabled (Patch by Jeremy Kloth)
* Issue #17046: Fix test_subprocess test_executable_without_cwd broken test case.Ned Deily2013-08-031-0/+2
|
* Issue #17557: Fix os.getgroups() to work with the modified behavior ofNed Deily2013-08-022-0/+4
| | | | getgroups(2) on OS X 10.8. Original patch by Mateusz Lenik.
* Issue #17899: Fix rare file descriptor leak in os.listdir().Larry Hastings2013-08-021-0/+2
| | | | (Done as separate patch from trunk as the code has diverged quite a bit.)
* Issue #18599: Fix name attribute of _sha1.sha1() object. It now returnsChristian Heimes2013-07-301-0/+3
| | | | 'SHA1' instead of 'SHA'.
* Close #15415: Factor out temp dir helpers to test.supportNick Coghlan2013-07-281-0/+3
| | | | Patch by Chris Jerdonek
* Issue #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-282-0/+4
| | | | | | | Also including this change in 3.3 to help avoid spurious conflicts between the two most active branches. (Initial patch by Indra Talip)
* Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().Christian Heimes2013-07-261-0/+3
|
* Issue #18561: Skip name in ctypes' _build_callargs() if name is NULL.Christian Heimes2013-07-261-0/+2
| | | | CID 486199