summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* (Merge 3.3) Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
|\
| * Issue #18405: Improve the entropy of crypt.mksalt().Victor Stinner2013-08-131-0/+2
| |
* | Close #12015: The tempfile module now uses a suffix of 8 random charactersVictor Stinner2013-08-131-0/+5
| | | | | | | | | | | | instead of 6, to reduce the risk of filename collision. The entropy was reduced when uppercase letters were removed from the charset used to generate random characters.
* | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-0/+2
| |
* | Merge issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2
|\ \ | |/
| * Issue #17701: Improving strftime documentation.David Wolever2013-08-121-0/+2
| |
* | Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece ↵Antoine Pitrou2013-08-121-0/+3
| | | | | | | | of text to a given length.
* | Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+2
|\ \ | |/
| * Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.Larry Hastings2013-08-121-0/+2
| |
* | Closes issue #18598: Have the exception message forBrett Cannon2013-08-121-0/+3
| | | | | | | | | | importlib.import_module() include the name of the module when the 'package' argument is missing but needed.
* | MergeTerry Jan Reedy2013-08-102-1/+5
|\ \
| * \ Merge headsTerry Jan Reedy2013-08-101-0/+2
| |\ \
| * \ \ Issue #18676: Merge from 3.3Terry Jan Reedy2013-08-102-1/+5
| |\ \ \ | | | |/ | | |/|
| | * | 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 #10241: Clear extension module dict copies at interpreter shutdown.Antoine Pitrou2013-08-101-0/+3
| |_|/ |/| | | | | | | | | | | | | | Patch by Neil Schemenauer, minimally modified. (re-apply after fix for tkinter-related crash)
* | | Fix refcounting issue with extension types in tkinter.Antoine Pitrou2013-08-101-0/+2
|/ / | | | | | | (issue #15721)
* | Merge with 3.3Terry Jan Reedy2013-08-101-0/+4
|\ \ | |/
| * 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.
* | Merge with 3.3Terry Jan Reedy2013-08-101-0/+3
|\ \ | |/
| * 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: merge with 3.3.Ezio Melotti2013-08-101-0/+2
|\ \ | |/
| * #18681: Fix a NameError in imp.reload() (noticed by Weizhao Li).Ezio Melotti2013-08-101-0/+2
| |
* | Merge #8112: Update the documenting xmlrpc server to use getfullargspec.R David Murray2013-08-101-0/+3
|\ \ | |/
| * #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.
* | typo, changeset dd0d751cc7f1 belongs to issue #16499 not issue #16400Christian Heimes2013-08-101-1/+1
| |
* | Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-102-2/+14
| | | | | | | | | | | | | | | | | | | | -I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code.
* | #18600: add policy to add_string, and as_bytes and __bytes__ methods.R David Murray2013-08-091-0/+3
| | | | | | | | | | | | | | This was triggered by wanting to make the doctest in email.policy.rst pass; as_bytes and __bytes__ are clearly useful now that we have BytesGenerator. Also updated the Message docs to document the policy keyword that was added in 3.3.
* | Closes #18671: Output more information when logging exceptions occur.Vinay Sajip2013-08-081-0/+2
| |
* | #18357: merge with 3.3.Ezio Melotti2013-08-082-0/+4
|\ \ | |/
| * #18357: add tests for dictview set difference. Patch by Fraser Tweedale.Ezio Melotti2013-08-082-0/+4
| |
* | #18273: merge with 3.3.Ezio Melotti2013-08-081-0/+3
|\ \ | |/
| * #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 #15301: Parsing fd, uid, and gid parameters for builtinsLarry Hastings2013-08-081-1/+4
| | | | | | | | in Modules/posixmodule.c is now far more robust.
* | Issue #18621: Prevent the site module's patched builtins from keeping too ↵Antoine Pitrou2013-08-061-0/+3
| | | | | | | | many references alive for too long.
* | #18443: remove the TextMate entry now that the bundle has been removed and ↵Ezio Melotti2013-08-061-2/+1
| | | | | | | | fix ordering. Patch by Févry Thibault.
* | Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.Christian Heimes2013-08-061-0/+3
|\ \ | |/
| * Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails.Christian Heimes2013-08-061-0/+3
| |
* | Issue #14323: Expanded the number of digits in the coefficients for theSerhiy Storchaka2013-08-061-0/+3
| | | | | | | | RGB -- YIQ conversions so that they match the FCC NTSC versions.
* | Issue #17934: Add a clear() method to frame objects, to help clean up ↵Antoine Pitrou2013-08-051-0/+3
| | | | | | | | expensive details (local variables) and break reference cycles.
* | Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.Antoine Pitrou2013-08-052-1/+5
| |
* | Merge: #18657: remove duplicate entries from Misc/ACKS.R David Murray2013-08-041-3/+0
|\ \ | |/
| * #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
| |\
* | | Fixes #8860: Round half-microseconds to even in the timedelta constructor.Alexander Belopolsky2013-08-041-0/+1
| | | | | | | | | | | | (Original patch by Mark Dickinson.)
* | | Cycled Misc/NEWS for alpha 2, touched patchlevel.Larry Hastings2013-08-041-0/+12
| | |
* | | Merge from v3.4.0a1 head.Larry Hastings2013-08-031-0/+7
|\ \ \
| * \ \ Merge headsSerhiy Storchaka2013-08-031-0/+3
| |\ \ \
| | * \ \ Issue #16067: Merge with 3.3Martin v. Löwis2013-08-031-0/+3
| | |\ \ \ | | | | |/ | | | |/|
| | | * | 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
| |\ \ \ \ | | |/ / / | |/| | / | | | |/ | | |/|