summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Output lib files for PGO build into PGO directory.Martin v. Löwis2012-08-241-0/+2
|
* Pick up 32-bit launcher from PGO directory on 64-bit PGO build.Martin v. Löwis2012-08-241-0/+2
|
* Drop PC\python_nt.h as it's not used.Martin v. Löwis2012-08-241-0/+3
| | | | Add input dependency on custom build step.
* Issue #15511: Drop explicit dependency on pythonxy.lib from amd64 configuration.Martin v. Löwis2012-08-241-0/+3
|
* Add missing PGI/PGO configurations for pywlauncher.Martin v. Löwis2012-08-241-0/+2
|
* Merge with 3.2Ross Lagerwall2012-08-241-0/+2
|\
| * Issue 15777: Fix a refleak in _posixsubprocess.Ross Lagerwall2012-08-241-0/+2
| | | | | | | | It was exposed by 03c98d05b140 and dbbf3ccf72e8.
| * Issue #15645: Ensure 2to3 grammar pickles are properly installed.Ned Deily2012-08-231-0/+2
| | | | | | | | (Patch by Ronald Oussoren)
* | Close #2051: Oops, transposed the digits in the issue number in the previous ↵Nick Coghlan2012-08-241-1/+1
| | | | | | | | commit
* | Close #2501: Permission bits are once again correctly copied from the source ↵Nick Coghlan2012-08-241-0/+5
| | | | | | | | file to the cached bytecode file. Test by Eric Snow.
* | Issue #15645: Ensure 2to3 grammar pickles are properly installed.Ned Deily2012-08-231-0/+5
| | | | | | | | (Patch by Ronald Oussoren)
* | #665194: Update email.utils.localtime to use astimezone, and fix bug.R David Murray2012-08-231-0/+3
| | | | | | | | | | | | | | The new code correctly handles historic changes in UTC offsets. A test for this should follow. Original patch by Alexander Belopolsky.
* | Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set ↵Ronald Oussoren2012-08-221-0/+2
|\ \ | |/ | | | | | | | | | | | | | | on Mac OS X. This is due to an off-by-one error: the allocated buffer didn't have room for a NUL character at the end of the mbstowcs result. (merge with 3.2)
| * Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set ↵Ronald Oussoren2012-08-221-0/+2
| | | | | | | | | | | | | | on Mac OS X. This is due to an off-by-one error: the allocated buffer didn't have room for a NUL character at the end of the mbstowcs result.
| * Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.Trent Nelson2012-08-211-0/+4
| | | | | | | | This is necessary for ZFS systems, which don't support UF_IMMUTABLE.
* | Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.Trent Nelson2012-08-211-0/+4
| | | | | | | | | | | | | | | | This is necessary for ZFS systems, which don't support UF_IMMUTABLE. (Note: this commit is a manual merge of 78699:019a2390b014 as both _test_chflags_regular_file and test_lchflags_symlink differ between 3.2 and default.)
* | Issue #15285: Refactor connect timeout test in test_timeout.Trent Nelson2012-08-211-0/+4
|\ \ | |/
| * Issue #15285: Refactor connect timeout test in test_timeout.Trent Nelson2012-08-211-0/+4
| |
| * Issue #14954: Clarify the interaction of weak references and garbage collection.Antoine Pitrou2012-08-201-0/+1
| | | | | | | | Patch by Ethan Furman.
* | Fix Issue 15743 - improve urllib tests by removing deprecated method usages. ↵Senthil Kumaran2012-08-201-0/+3
| | | | | | | | Patch by Jeff Knupp.
* | #15199: Fix JavaScript's default MIME type to application/javascriptPetri Lehtinen2012-08-202-0/+4
|\ \ | |/
| * #15199: Fix JavaScript's default MIME type to application/javascriptPetri Lehtinen2012-08-202-0/+4
| |
* | Issue #15726: Fix incorrect bounds checking in PyState_FindModule.Antoine Pitrou2012-08-201-0/+3
|\ \ | |/ | | | | Patch by Robin Schreiber.
| * Issue #15726: Fix incorrect bounds checking in PyState_FindModule.Antoine Pitrou2012-08-202-0/+4
| | | | | | | | Patch by Robin Schreiber.
* | Issue #12643: Respect sys.excepthook in code.InteractiveConsoleNick Coghlan2012-08-202-0/+4
| |
* | Break up the 'someos' docs classification based on a more user-focused ↵Nick Coghlan2012-08-201-0/+7
| | | | | | | | scheme, including creation of a separate 'Concurrent Execution' section
* | Close #4966: revamp the sequence docs in order to better explain the state ↵Nick Coghlan2012-08-201-0/+3
| | | | | | | | of modern Python
* | s/path importer/path based finder/ (because the path based finder is not an ↵Nick Coghlan2012-08-201-0/+4
| | | | | | | | importer and the simpler 'path finder' is too ambiguous)
* | Close #14846: Handle a sys.path entry going awayNick Coghlan2012-08-201-0/+3
| |
* | Merge #13579: teach string.Formatter about 'a'.R David Murray2012-08-191-0/+2
|\ \ | |/ | | | | Patch by Francisco Martín Brugué.
| * #13579: teach string.Formatter about 'a'.R David Murray2012-08-191-0/+2
| | | | | | | | Patch by Francisco Martín Brugué.
* | Issue #15595: Fix subprocess.Popen(universal_newlines=True)Andrew Svetlov2012-08-191-0/+3
|\ \ | |/ | | | | | | | | for certain locales (utf-16 and utf-32 family). Patch by Chris Jerdonek.
| * Issue #15595: Fix subprocess.Popen(universal_newlines=True)Andrew Svetlov2012-08-191-0/+3
| | | | | | | | | | | | for certain locales (utf-16 and utf-32 family). Patch by Chris Jerdonek.
* | Issue #15615: Add some tests for the json module's handling of invalid input ↵Antoine Pitrou2012-08-182-0/+6
|\ \ | |/ | | | | | | | | data. Patch by Kushal Das.
| * Issue #15615: Add some tests for the json module's handling of invalid input ↵Antoine Pitrou2012-08-182-0/+4
| | | | | | | | | | | | data. Patch by Kushal Das.
* | Issue #15477: Merge fix from 3.2Mark Dickinson2012-08-181-0/+3
|\ \ | |/
| * Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken.Mark Dickinson2012-08-181-0/+3
| |
* | Issue #15678: Fix menu customization for IDLE started from OS XNed Deily2012-08-171-0/+3
| | | | | | | | | | | | | | | | | | | | command lines. It was broken as a side effect of the changes to pythonw.c in b79d276041a8 for #15307. Since sys.executable no longer includes 'Python.app' in the path name, test for a framework build instead. This should give the previous behavior in nearly all cases. Whether the previous behavior is sensible is left as an issue for later releases. IDLE.app behavior was not affected as it does its own manipulation of sys.executable.
* | Issue #15640: Document importlib.abc.Finder as deprecated.Brett Cannon2012-08-171-0/+2
| | | | | | | | | | | | | | The code for the class itself isn't deprecated for backwards-compatibility reasons, but the class shouldn't be directly inherited by anyone anymore as the API is no longer as widely valid as it used to be.
* | Issue #15715: Ignore failed imports triggered by the use of fromlist.Brett Cannon2012-08-171-0/+3
| | | | | | | | | | | | | | | | | | | | | | When the fromlist argument is specified for __import__() and the attribute doesn't already exist, an import is attempted. If that fails (e.g. module doesn't exist), the ImportError will now be silenced (for backwards-compatibility). This *does not* affect ``from ... import ...`` statements. Thanks to Eric Snow for the patch and Simon Feltman for reporting the regression.
* | Issue #14669: Fix pickling of connections and sockets on MacOSXRichard Oudkerk2012-08-161-0/+4
| | | | | | | | | | by sending/receiving an acknowledgment after file descriptor transfer. TestPicklingConnection has been reenabled for MacOSX.
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵Antoine Pitrou2012-08-151-0/+3
|\ \ | |/ | | | | | | | | errors correctly. Patch by Serhiy Storchaka.
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵Antoine Pitrou2012-08-151-0/+3
| | | | | | | | | | | | errors correctly. Patch by Serhiy Storchaka.
* | #11062: Fix adding a message from file to Babyl mailboxPetri Lehtinen2012-08-151-0/+2
|\ \ | |/
| * #11062: Fix adding a message from file to Babyl mailboxPetri Lehtinen2012-08-151-0/+2
| |
* | Merge 3.2Richard Oudkerk2012-08-141-0/+4
|\ \ | |/
| * Issue #15646: Prevent equivalent of a fork bomb when using multiprocessingRichard Oudkerk2012-08-141-0/+4
| | | | | | | | on Windows without the "if __name__ == '__main__'" idiom.
* | Add Daniel Ellis to Misc/ACKSEli Bendersky2012-08-141-0/+1
| |
* | errant merge problem committedBrian Curtin2012-08-131-265/+0
| |
* | Merge 3.2Brian Curtin2012-08-131-0/+265
|\ \ | |/