summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Closes #27545: Remove pyshellext.vcxproj from pcbuild.projSteve Dower2016-07-181-2/+0
|\ \ \ \ | |/ / /
| * | | Closes #27545: Remove pyshellext.vcxproj from pcbuild.projSteve Dower2016-07-181-2/+0
| | | |
* | | | Issue #27531: Merge from 3.5Berker Peksag2016-07-171-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #27531: Update signature of Mock.assert_not_called methodBerker Peksag2016-07-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Since 01ae1ac2daf4, it doesn't accept any arguments. Patch by Michael Killough.
* | | | Merge 3.5.Stefan Krah2016-07-172-8/+79
|\ \ \ \ | |/ / /
| * | | Issue #26974: Fix segfault in the presence of absurd subclassing. ProactivelyStefan Krah2016-07-172-3/+75
| | | | | | | | | | | | | | | | eliminate all internal uses of overridden methods.
* | | | Issue #27419: Added temporary workaround for subinterpreters.Serhiy Storchaka2016-07-171-1/+4
|\ \ \ \ | |/ / /
| * | | Issue #27419: Added temporary workaround for subinterpreters.Serhiy Storchaka2016-07-171-1/+4
| | | |
* | | | Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList.Serhiy Storchaka2016-07-171-2/+2
|\ \ \ \ | |/ / /
| * | | Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList.Serhiy Storchaka2016-07-171-2/+2
| | | |
* | | | Issue #27419: Standard __import__() no longer look up "__import__" in globalsSerhiy Storchaka2016-07-172-8/+9
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | or builtins for importing submodules or "from import". Fixed a crash if raise a warning about unabling to resolve package from __spec__ or __package__.
| * | | Issue #27419: Standard __import__() no longer look up "__import__" in globalsSerhiy Storchaka2016-07-172-8/+8
| | | | | | | | | | | | | | | | | | | | or builtins for importing submodules or "from import". Fixed handling an error of non-string package name.
* | | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-175-22/+89
|\ \ \ \ | |/ / / | | | | | | | | Original patch by Alexandre Vassalotti.
| * | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-175-22/+89
| | | | | | | | | | | | | | | | Original patch by Alexandre Vassalotti.
* | | | Merge from 3.5Steve Dower2016-07-167-29/+68
|\ \ \ \ | |/ / /
| * | | Fixes use of Py_IntDir and Py_OutDir to control build directories.Steve Dower2016-07-167-29/+68
| | | |
* | | | Issue #25507: Merge from 3.5 with ttk replacing colorchooser.Terry Jan Reedy2016-07-161-0/+6
|\ \ \ \ | |/ / / | | | | | | | | | | | | IDLE no longer runs buggy code because of its tkinter imports. Users must include the same imports required to run directly in Python.
| * | | Issue #25507: IDLE no longer runs buggy code because of its tkinter imports.Terry Jan Reedy2016-07-161-0/+6
| | | | | | | | | | | | | | | | Users must include the same imports required to run directly in Python.
* | | | Check in update for importlib_external.hBrett Cannon2016-07-161-2404/+2412
| | | |
* | | | Merge for #27083Brett Cannon2016-07-164-22/+28
|\ \ \ \ | |/ / /
| * | | Fix regressions introduced by fixes for issue #27083.Brett Cannon2016-07-165-2573/+2589
| | | |
* | | | Issue #27285: Cleanup leftover susp-ignored entry after text was changedMartin Panter2016-07-161-1/+0
| | | |
* | | | Merge: #27522: break unintended cycle in feedparser.R David Murray2016-07-162-3/+8
|\ \ \ \ | |/ / /
| * | | #27522: break unintended cycle in feedparser.R David Murray2016-07-162-3/+8
| | | | | | | | | | | | | | | | Patch by Costas.
* | | | Merge for #26696Brett Cannon2016-07-151-1/+4
|\ \ \ \ | |/ / /
| * | | Issue #26696: Document collections.abc.ByteString.Brett Cannon2016-07-151-1/+4
| | | | | | | | | | | | | | | | Thanks to Xiang Zhang for the patch.
* | | | Merge from 3.5Steve Dower2016-07-153-0/+6
|\ \ \ \ | |/ / /
| * | | Fix building tcl/tk with only the VC build tools installed.Steve Dower2016-07-153-0/+6
| | | |
* | | | Merge for #27083Brett Cannon2016-07-154-2346/+2354
|\ \ \ \ | |/ / /
| * | | Issue #27083: Respect the PYTHONCASEOK environment variable underBrett Cannon2016-07-153-7/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Windows. Originally only b'PYTHONCASEOK' was being checked for in os.environ, but that won't work under Windows where all environment variables are strings (on OS X they are bytes). Thanks to Eryk Sun for the bug report.
* | | | Fix a failing test introduced as part of issue #27512Brett Cannon2016-07-151-2/+1
| | | |
* | | | Merge for #26844Brett Cannon2016-07-153-2/+6
|\ \ \ \ | |/ / /
| * | | Issue #26844: Fix imp.find_module() to have the exception related toBrett Cannon2016-07-153-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch.
* | | | Issue #27512: Don't segfault when os.fspath() calls an object whoseBrett Cannon2016-07-153-7/+24
| | | | | | | | | | | | | | | | | | | | | | | | __fspath__() raises an exception. Thanks to Xiang Zhang for the patch.
* | | | Issue #27518: Merge from 3.5Berker Peksag2016-07-151-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #27518: Fix typo in Grammar/GrammarBerker Peksag2016-07-151-1/+1
| | | | | | | | | | | | | | | | Patch by Stéphane Wirtel.
* | | | Issue #25507: Move 4 objects from pyshell to run and switch inports.Terry Jan Reedy2016-07-153-110/+114
| | | | | | | | | | | | | | | | This removes one problem inport and reduces len(sys.modules) by 37.
* | | | merge 3.5 (#27514)Benjamin Peterson2016-07-153-3/+8
|\ \ \ \ | |/ / /
| * | | make too many nested blocks be a SyntaxError instead of a SystemError ↵Benjamin Peterson2016-07-153-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | (closes #27514) Patch by Ammar Askar.
* | | | Issue #27180: Merge from 3.5Berker Peksag2016-07-141-2/+3
|\ \ \ \ | |/ / /
| * | | Issue #27180: Clarify Path.rename() behavior on Unix systemsBerker Peksag2016-07-141-2/+3
| | | | | | | | | | | | | | | | Patch by Evelyn Mitchell.
* | | | Issue #27455: Merge from 3.5Berker Peksag2016-07-141-13/+13
|\ \ \ \ | |/ / /
| * | | Issue #27455: Improve examples in tkinter documentationBerker Peksag2016-07-141-13/+13
| | | | | | | | | | | | | | | | Patch by John Hagen.
* | | | Backed out changeset af29d89083b3 (closes #25548) (closes #27498)Benjamin Peterson2016-07-1420-105/+92
| | | |
* | | | Issue #27369: Merge test_pyexpat from 3.5Martin Panter2016-07-142-4/+8
|\ \ \ \ | |/ / /
| * | | Issue #27369: Merge test_pyexpat from 3.4 into 3.5Martin Panter2016-07-142-4/+8
| |\ \ \ | | |/ /
| | * | Issue #27369: Merge test_pyexpat from 3.3 into 3.4Martin Panter2016-07-142-4/+8
| | |\ \ | | | |/
| | | * Issue #27369: Merge test_pyexpat from 3.2 into 3.3Martin Panter2016-07-142-4/+5
| | | |\
| | | | * Issue #27369: Don’t test error message detail that changed in Expat 2.2.03.2Martin Panter2016-07-142-4/+5
| | | | |
| | | | * Issue #22758: Move NEWS entry to Library sectionMartin Panter2016-07-141-3/+3
| | | | |