summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15466: Stop using TYPE_INT64 in marshal,Martin v. Löwis2012-07-281-0/+3
| | | | | to make importlib.h (and other byte code files) equal between 32-bit and 64-bit systems.
* Issue #1692335: Move initial args assignment to BaseException.__new__Richard Oudkerk2012-07-281-0/+3
| | | | to help pickling of naive subclasses.
* Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.Stefan Krah2012-07-281-0/+2
|
* Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-272-0/+4
| | | | Original patch by J Derek Wilson.
* Issue #15364: Fix sysconfig.get_config_var('srcdir') to be an absolute path.Richard Oudkerk2012-07-271-0/+3
|
* - Issue #15458: python-config gets a new option --configdir to print theBarry Warsaw2012-07-262-1/+7
| | | | $LIBPL value.
* Issue #15456: Fix code __sizeof__ after #12399 change.Martin v. Löwis2012-07-261-0/+3
| | | | Patch by Serhiy Storchaka.
* Issue #15041: update "see also" list in tkinter documentation.Andrew Svetlov2012-07-261-0/+2
|\
| * Issue #15041: update "see also" list in tkinter documentation.Andrew Svetlov2012-07-261-0/+2
| |
* | Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-251-0/+3
|\ \ | |/ | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
| * Issue #15320: Make iterating the list of tests thread-safe when running ↵Antoine Pitrou2012-07-251-0/+3
| | | | | | | | | | | | tests in multiprocess mode. Patch by Chris Jerdonek.
* | Issue #15413: os.times() had disappeared under Windows.Antoine Pitrou2012-07-241-0/+2
| |
* | #15232: make NEWS entry more accurate.R David Murray2012-07-241-1/+1
|\ \ | |/
| * #15232: make NEWS entry more accurate.R David Murray2012-07-241-1/+1
| |
* | Issue #14197: mergeNed Deily2012-07-242-1/+5
|\ \ | |/
| * Issue #14197: For OS X framework builds, ensure links to the sharedNed Deily2012-07-242-1/+5
| | | | | | | | library are created with the proper ABI suffix.
* | Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+4
|\ \ | |/ | | | | Initial patch by Serhiy Storchaka.
| * Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+4
| | | | | | | | Initial patch by Serhiy Storchaka.
| * merge heads.Senthil Kumaran2012-07-231-0/+3
| |\
* | \ merge heads.Senthil Kumaran2012-07-231-0/+3
|\ \ \
| * \ \ Merge #15232: correctly mangle From lines in MIME preamble and epilogueR David Murray2012-07-231-0/+3
| |\ \ \ | | | |/ | | |/|
| | * | #15232: correctly mangle From lines in MIME preamble and epilogueR David Murray2012-07-231-0/+3
| | | |
* | | | - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch ↵Senthil Kumaran2012-07-231-0/+3
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| contributed by Chris Jerdonek.
| * | - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch ↵Senthil Kumaran2012-07-231-0/+3
| |/ | | | | | | contributed by Chris Jerdonek.
* | #15094: fix incorrectly placed #endif in _tkinter.c.Andrew Svetlov2012-07-221-0/+3
| | | | | | | | Patch by Serhiy Storchaka.
* | Merge #13922: argparse no longer incorrectly strips '--' after the first one.R David Murray2012-07-221-0/+3
|\ \ | |/ | | | | Patch by Jeff Knupp.
| * #13922: argparse no longer incorrectly strips '--' after the first one.R David Murray2012-07-222-0/+4
| | | | | | | | Patch by Jeff Knupp.
* | Merge #12353: argparse now correctly handles null argument values.R David Murray2012-07-221-0/+2
|\ \ | |/ | | | | Patch by Torsten Landschoff.
| * #12353: argparse now correctly handles null argument values.R David Murray2012-07-221-0/+2
| | | | | | | | Patch by Torsten Landschoff.
* | Issue #15184: Ensure consistent results of OS X configurationNed Deily2012-07-211-0/+5
| | | | | | | | | | | | | | tailoring for universal builds by factoring out common OS X-specific customizations from sysconfig, distutils.sysconfig, distutils.util, and distutils.unixccompiler into a new module _osx_support that can eventually also be used by packaging.
* | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-211-1/+4
|\ \ | |/ | | | | unorderable key.
| * Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with ↵Florent Xicluna2012-07-211-0/+3
| | | | | | | | unorderable key.
| * Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after ↵Antoine Pitrou2012-07-201-0/+3
| | | | | | | | | | | | error handling. Patch by Serhiy Storchaka.
* | Move importlib.test.benchmark to Tools/importbench to make it moreBrett Cannon2012-07-201-0/+2
| | | | | | | | | | visible and to place it with other micro-benchmarks (e.g. stringbench).
* | Issue #15168: Move importlb.test to test.test_importlib.Brett Cannon2012-07-201-0/+2
| | | | | | | | | | This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
* | MergeBrett Cannon2012-07-201-0/+1
|\ \
| * \ Issue #15406: Fix deprecation warning in ctypes test_bitfields.pyMeador Inge2012-07-201-0/+1
| |\ \ | | |/ | | | | | | Patch by Flávio Ribeiro.
| | * Issue #15406: Fix deprecation warning in ctypes test_bitfields.pyMeador Inge2012-07-201-0/+1
| | | | | | | | | | | | Patch by Flávio Ribeiro.
* | | Issue #15091: Call importlib.invalidate_caches() and reactivate a testBrett Cannon2012-07-201-1/+4
|/ / | | | | | | of importing a symlinked package.
* | Add missing NEWS entry for changeset b79d276041a8Ronald Oussoren2012-07-201-0/+3
| |
* | Merge 3.2Andrew Svetlov2012-07-201-0/+2
|\ \ | |/
| * Issue #15404: Refleak in PyMethodObject repr.Andrew Svetlov2012-07-201-0/+2
| |
* | #1492704: Backout and wait for 3.4Hynek Schlawack2012-07-191-3/+0
| |
* | Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-192-0/+4
|\ \ | |/ | | | | Patch by Julia Lawall.
| * Issue #15394: Fix ref leaks in PyModule_Create.Meador Inge2012-07-192-0/+4
| | | | | | | | Patch by Julia Lawall.
* | #1492704: Make shutil.copyfile() raise a distinct SameFileErrorHynek Schlawack2012-07-191-0/+3
| | | | | | | | Patch by Atsuo Ishimoto.
* | Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-191-0/+3
|\ \ | |/
| * Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-191-0/+3
| |
* | Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-181-0/+3
|\ \ | |/
| * Issue #15368: make bytecode generation deterministic.Meador Inge2012-07-181-0/+3
| |