summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19804: The test_find_mac test in test_uuid is now skipped if theSerhiy Storchaka2014-01-101-0/+3
|\ | | | | | | ifconfig executable is not available.
| * Issue #19804: The test_find_mac test in test_uuid is now skipped if theSerhiy Storchaka2014-01-101-0/+3
| | | | | | | | ifconfig executable is not available.
* | Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-0/+5
|\ \ | |/ | | | | Incorrect requirements can cause memory swapping.
| * Issue #19886: Use better estimated memory requirements for bigmem tests.Serhiy Storchaka2014-01-101-0/+2
| | | | | | | | Incorrect requirements can cause memory swapping.
* | Issue #20152: import.c now uses Argument Clinic.Brett Cannon2014-01-101-0/+2
| |
* | Issue #13107: argparse and optparse no longer raises an exception when outputSerhiy Storchaka2014-01-091-0/+4
|\ \ | |/ | | | | | | a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
| * Issue #13107: argparse and optparse no longer raises an exception when outputSerhiy Storchaka2014-01-092-0/+5
| | | | | | | | | | a help on environment with too small COLUMNS. Based on patch by Elazar Gershuni.
* | Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly ↵Antoine Pitrou2014-01-091-0/+3
|\ \ | |/ | | | | asked for.
| * Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly ↵Antoine Pitrou2014-01-091-0/+3
| | | | | | | | asked for.
* | Issue #18960: Fix bugs with Python source code encoding in the second line.Serhiy Storchaka2014-01-091-0/+20
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The first line of Python script could be executed twice when the source encoding (not equal to 'utf-8') was specified on the second line. * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. * As a consequence, 'python -x' works now again with files with the source encoding declarations specified on the second file, and can be used again to make Python batch files on Windows. * The tokenize module now ignore the source encoding declaration on the second line if the first line contains anything except a comment. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment.
| * Issue #18960: Fix bugs with Python source code encoding in the second line.Serhiy Storchaka2014-01-091-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The first line of Python script could be executed twice when the source encoding (not equal to 'utf-8') was specified on the second line. * Now the source encoding declaration on the second line isn't effective if the first line contains anything except a comment. * As a consequence, 'python -x' works now again with files with the source encoding declarations specified on the second file, and can be used again to make Python batch files on Windows. * The tokenize module now ignore the source encoding declaration on the second line if the first line contains anything except a comment. * IDLE now ignores the source encoding declaration on the second line if the first line contains anything except a comment. * 2to3 and the findnocoding.py script now ignore the source encoding declaration on the second line if the first line contains anything except a comment.
* | Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPUSerhiy Storchaka2014-01-091-0/+3
|\ \ | |/ | | | | consumption.
| * Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPUSerhiy Storchaka2014-01-091-0/+3
| | | | | | | | consumption.
* | whatsnew: InspectLoader.get_code now concrete, b32decode raises binascii.Error.R David Murray2014-01-081-2/+2
| | | | | | | | And a news item rephrase.
* | Merge: Fix verb tense in base64 docs, and the phrasing of a news entry.R David Murray2014-01-081-3/+3
|\ \ | |/
| * Fix verb tense in base64 docs, and the phrasing of a news entry.R David Murray2014-01-081-3/+3
| |
* | whatsnew: FileIO.readall performance, os.cpu_count.R David Murray2014-01-081-4/+6
| | | | | | | | And more news item tweaks.
* | (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSErrorVictor Stinner2014-01-081-0/+3
|\ \ | |/ | | | | exception on error instead of returning -1.
| * Issue #20113: os.readv() and os.writev() now raise an OSError exception onVictor Stinner2014-01-081-0/+3
| | | | | | | | error instead of returning -1.
* | Fixes issue #19081: When a zipimport .zip file in sys.path being imported fromGregory P. Smith2014-01-081-0/+5
|\ \ | |/ | | | | | | | | is modified during the lifetime of the Python process after zipimport has already cached the zip's table of contents we detect this and recover rather than read bad data from the .zip (causing odd import errors).
| * Fixes Issue #19081: When a zipimport .zip file in sys.path being imported fromGregory P. Smith2014-01-081-0/+5
| | | | | | | | | | | | is modified during the lifetime of the Python process after zipimport has already cached the zip's table of contents we detect this and recover rather than read bad data from the .zip (causing odd import errors).
* | Issue #19723: Fix issue number typo in Misc/NEWSZachary Ware2014-01-071-1/+1
| |
* | Issue #12837: Silence a Clang compiler warning on OS X.Brett Cannon2014-01-071-0/+6
| | | | | | | | | | | | | | | | Now makes CPython build without warnings on OS X under Clang with -Wno-unused-value -Wno-empty-body -Qunused-arguments -Wno-deprecated-declarations. Thanks to David Watson for taking an initial stab at a solution.
* | Issue #19719: Update various finder and loader ABCs such that theirBrett Cannon2014-01-071-0/+4
| | | | | | | | | | | | | | old methods now provide implementations when PEP 451 APIs are present. This should help with backwards-compatibility with code which has not been updated to work with PEP 451.
* | Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings2014-01-071-0/+3
| | | | | | | | to improve readability.
* | Issue #20157: When Argument Clinic renames a parameter because its nameLarry Hastings2014-01-071-0/+3
| | | | | | | | collides with a C keyword, it no longer exposes that rename to PyArg_Parse.
* | Issue #20141: Improved Argument Clinic's support for the PyArg_Parse "O!"Larry Hastings2014-01-071-0/+3
| | | | | | | | format unit.
* | Issue #20144: Argument Clinic now supports simple constants as parameterLarry Hastings2014-01-071-0/+6
| | | | | | | | | | default values. inspect.Signature correspondingly supports them in __text_signature__ fields for builtins.
* | Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.Serhiy Storchaka2014-01-071-0/+2
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False.
| * Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.Serhiy Storchaka2014-01-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Misc.image_names(), Misc.image_types(), Wm.wm_colormapwindows(), and LabelFrame.panes() now always return a tuple. * Fixed error of comparing str and int in tt.LabeledScale._adjust(). * ttk.Notebook.index() now always returns int. * ttk.Notebook.tabs() now always returns a tuple. * ttk.Entry.bbox() now always returns a tuple of ints. * ttk.Entry.validate() now always correctly works. * ttk.Combobox.current() now always returns int. * ttk.Panedwindow.sashpos() now always returns int. * ttk.Treeview.bbox() now always returns a tuple of ints. * ttk.Treeview.get_children() now always returns a tuple. * ttk.Treeview.exists() now always correctly works. * ttk.Treeview.index() now always returns int. * ttk.Treeview.tag_has() now always returns 0 or 1. * And numerous other errors in methods which returns a tuple, list or dict. * Fixed ttk tests for wantobjects is False.
* | Issue 19713: Add PEP 451-related deprecations.Eric Snow2014-01-071-1/+2
| |
* | Issue #19703: Update pydoc to use the new importer APIs.Eric Snow2014-01-071-0/+2
| |
* | asyncio: Fix deadlock in readexactly(). Fixes issue #20154.Guido van Rossum2014-01-071-0/+2
| |
* | Issue #20143: The line numbers reported in Argument Clinic errors areLarry Hastings2014-01-061-0/+3
| | | | | | | | now more accurate.
* | Issue #20142: Py_buffer variables generated by Argument Clinic are nowLarry Hastings2014-01-061-0/+5
| | | | | | | | initialized with a default value.
* | Merge 3.4.0b2 release revisions back into mainline.Larry Hastings2014-01-061-0/+4
|\ \
| * | Issue19995: %o, %x, %X now only accept intsEthan Furman2014-01-051-0/+4
| | |
* | | Post-release engineering; updated NEWS and version string.Larry Hastings2014-01-061-0/+12
| | |
* | | Bump version number for 3.4.0b2.v3.4.0b2Larry Hastings2014-01-051-1/+1
|/ /
* | Fix news entry to use updated name for XMLPullParser.R David Murray2014-01-051-2/+2
| |
* | whatsnew: XMLPullParser, plus some doc updates.R David Murray2014-01-051-5/+5
| | | | | | | | | | | | | | | | | | | | I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
* | Issue 20123: Fix pydoc.synopsis() for "binary" modules.Eric Snow2014-01-051-0/+2
| | | | | | | | Also add missing tests to test_pydoc.
* | whatsnew: removal of TYPE_INT64 from marshal.R David Murray2014-01-051-1/+1
| | | | | | | | | | Also update news entry for SMTPException; when I changed it from IOError to OSError I forgot to update the news item.
* | whatsnew: logging TimedRotatingFileHandler atTime parameter.R David Murray2014-01-041-2/+2
| |
* | whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup.R David Murray2014-01-041-3/+3
| | | | | | | | And more news entry clarifications.
* | whatsnew: ppring string wrapping, string pickling optimization.R David Murray2014-01-041-5/+5
| | | | | | | | Also clarify some NEWS entries.
* | Issue #19708: Update pkgutil to use the new importer APIs.Eric Snow2014-01-041-0/+2
| |
* | Issue #19713: Move away from using find_module/load_module.Eric Snow2014-01-041-0/+2
| |
* | Issue #19927: Add __eq__ to path-based loaders in importlib.Eric Snow2014-01-041-0/+2
| |
* | Merge headsSerhiy Storchaka2014-01-041-0/+2
|\ \