summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12037: Fix test_email for desktop Windows.Terry Jan Reedy2013-08-311-0/+2
|
* Issue #18489: Add complete, gui-free tests for idlelib.SearchEngine.Terry Jan Reedy2013-08-311-0/+2
| | | | | | Patch import and initialization in SearchEngine to make testing easier. Improve docstrings, especially to clarify the double role of 'ok' parameters. Original patch by Phil Webster.
* Issue #18418: After fork(), reinit all threads states, not only active ones.Charles-François Natali2013-08-302-0/+4
| | | | Patch by A. Jesse Jiryu Davis.
* Fixes issue #15507: test_subprocess's test_send_signal could fail if the testGregory P. Smith2013-08-291-0/+5
| | | | | | runner were run in an environment where the process inherited an ignore setting for SIGINT. Restore the SIGINT handler to the desired KeyboardInterrupt raising one during that test.
* Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-0/+2
| | | | in docstrings and comments.
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-0/+3
| | | | error messages and comments.
* #18833: add a test for test_telnetlib. Patch by Alex Volkov.Ezio Melotti2013-08-251-0/+1
|
* Issue #18817: Fix a resource warning in Lib/aifc.py demo.Serhiy Storchaka2013-08-251-0/+2
|
* #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)