summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge with 3.2.Georg Brandl2012-08-111-3/+1
|\
| * Revert 961a15aff2a6, this is already checked in another way.Georg Brandl2012-08-111-3/+1
| |
* | Merge with 3.2.Georg Brandl2012-08-111-1/+3
|\ \ | |/
| * Closes #15620: check for presence of readline.clear_history(), which is ↵Georg Brandl2012-08-111-1/+3
| | | | | | | | apparently missing on some readline versions, before calling it in the test.
* | Added tag v3.3.0b2 for changeset 4972a8f1b2aaGeorg Brandl2012-08-111-0/+1
| |
* | Bump to 3.3b2.v3.3.0b2Georg Brandl2012-08-116-127/+124
| |
* | Fix markup errors and update pydoc topics.Georg Brandl2012-08-114-9/+27
| |
* | Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-114-0/+32
|\ \ | |/ | | | | Patch by Ludwig Hähne.
| * Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-114-0/+32
| | | | | | | | Patch by Ludwig Hähne.
* | fix docstring wordingPhilip Jenvey2012-08-102-2615/+2616
| |
* | Issue #15610: The PyImport_ImportModuleEx macro now callsBrett Cannon2012-08-104-3/+13
| | | | | | | | | | | | | | | | | | PyImport_ImportModuleLevel() with a 'level' of 0 instead of -1 as the latter is no longer a valid value. Also added a versionchanged note for PyImport_ImportModuleLevel() just in case people don't make the connection between changes to __import__() and this C function.
* | Issue #15502: Refactor some code.Brett Cannon2012-08-103-4167/+4170
| |
* | Fix issue #15607: Update the print builtin function docstring with the new ↵Senthil Kumaran2012-08-101-4/+5
| | | | | | | | | | | | flush keyword. Patch contributed by Daniel Ellis.
* | update docstring per the extension package fix, refactorPhilip Jenvey2012-08-102-1653/+1661
| |
* | Issue #15576: Allow extension modules to be a package's __init__Brett Cannon2012-08-1013-3664/+3676
| | | | | | | | | | module again. Also took the opportunity to stop accidentally exporting _imp.extension_suffixes() as public.
* | Issue #15502: Finish bringing importlib.abc in line with the currentBrett Cannon2012-08-108-1204/+1291
| | | | | | | | | | | | | | | | | | state of the import system. Also make importlib.invalidate_caches() work with sys.meta_path instead of sys.path_importer_cache to completely separate the path-based import system from the overall import system. Patch by Eric Snow.
* | Remove now unused IntOrLongToString typeVictor Stinner2012-08-091-3/+0
| |
* | Issue #15601: fix tkinter test_variables failure with OS X Aqua Tk 8.4Andrew Svetlov2012-08-091-2/+2
| |
* | fix docs for c-api memory functionsAndrew Svetlov2012-08-091-3/+3
|\ \ | |/
| * fix docs for c-api memory functionsAndrew Svetlov2012-08-091-3/+3
| |
* | merge headsAndrew Svetlov2012-08-090-0/+0
|\ \ | |/
| * Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-092-0/+21
| | | | | | | | Initial patch by Anton Barkovsky.
* | Issue #15501: Document exception classes in subprocess module.Andrew Svetlov2012-08-092-0/+49
| | | | | | | | Initial patch by Anton Barkovsky.
* | Fix documentation for inspect module to pass doctestAndrew Svetlov2012-08-091-5/+5
| |
* | Add description of major changes in xml.etree.ElementTree to whatsnew/3.3Eli Bendersky2012-08-091-0/+12
| |
* | Issue #14992: merge from 3.2Ned Deily2012-08-091-1/+4
|\ \ | |/
| * Issue #14992: Prevent test_os test_exist_ok_s_isgid_directory test caseNed Deily2012-08-091-1/+4
| | | | | | | | failure on OS X built with 10.4 ABI.
* | faulthandler: fix the handler of user signalsVictor Stinner2012-08-091-1/+6
| | | | | | | | Restore the errno before calling the previous signal handler, and not after.
* | merge headsBenjamin Peterson2012-08-095-6/+42
|\ \
| * | Issue #13072: Fix test_array for installation without the ctypes moduleVictor Stinner2012-08-081-2/+11
| | |
| * | Issue #15589: Ensure double-alignment for brute-force capi argument parser testLarry Hastings2012-08-081-1/+1
| | | | | | | | | | | | that occasionally uses doubles.
| * | regrtest: give more information when a child process fails with an errorVictor Stinner2012-08-081-3/+5
| | | | | | | | | | | | different than KeyboardInterrupt
| * | Issue #13072: Ooops, now fix test_array for Linux with 32-bit wchar_t...Victor Stinner2012-08-081-1/+2
| | |
| * | Issue #13072: Fix test_array for Windows with 16-bit wchar_tVictor Stinner2012-08-081-2/+2
| | |
| * | - Issue #11715: Fix multiarch detection without having Debian developmentdoko@ubuntu.com2012-08-082-0/+24
| | | | | | | | | | | | tools (dpkg-dev) installed.
* | | use char instead of int to please T_BOOL (closes #15597)Benjamin Peterson2012-08-091-1/+1
|/ /
* | Issue #15560: Ensure consistent sqlite3 behavior and feature availabilityNed Deily2012-08-072-24/+30
| | | | | | | | | | by building a local copy of libsqlite3 with OS X installers rather than depending on the wide range of versions supplied with various OS X releases.
* | merge headsBenjamin Peterson2012-08-078-84/+96
|\ \
| * | Issue #15163: Pydoc shouldn't show __loader__ as a part of a module'sBrett Cannon2012-08-062-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | data. Also alphabetized the attributes in the blacklist to make it easier to detect changes. Initial patch by Éric Araujo.
| * | Issue #15471: Don't use mutable object as default values for theBrett Cannon2012-08-066-74/+81
| | | | | | | | | | | | parameters of importlib.__import__().
| * | Merge #15554: clarify splitlines/split differences.R David Murray2012-08-061-5/+8
| |\ \ | | |/ | | | | | | Patch by Chris Jerdonek.
| | * #15554: clarify splitlines/split differences.R David Murray2012-08-061-5/+8
| | | | | | | | | | | | Patch by Chris Jerdonek.
* | | fix yield from return value on custom iterators (closes #15568)Benjamin Peterson2012-08-073-1/+18
|/ /
* | Issue #15037: Build OS X installers with local copy of ncurses 5.9 librariesNed Deily2012-08-063-105/+93
| | | | | | | | | | to avoid curses.unget_wch bug present in older versions of ncurses such as those shipped with OS X.
* | OS X installer cleanups:Ned Deily2012-08-062-7/+27
| | | | | | | | | | | | | | | | - Remove OS X installer and Mac/Makefile dependencies on /Developer which no longer exists with Xcode 4; the referenced tools have been installed into the usr/bin tool root since Xcode 3. - Support adding the SDK usr/bin tool root to the installer's PATH via the SDK_TOOLS_BIN environment variable.
* | Issue #15482: Merge 78449:3fe01f7520e2 with a minor clarification.Brett Cannon2012-08-061-1/+2
|\ \ | |/
| * Issue #15482: Properly document the default 'level' parameter forBrett Cannon2012-08-062-5/+11
| | | | | | | | | | | | | | __import__(). To help explain why the -1 default value is typically not seen, a note about how import statements only use values of >= 0 is also noted.
* | Fix a spelling mistake in a comment.Brett Cannon2012-08-051-1/+1
| |
* | Close #13072: Restore code before the PEP 393 for the array moduleVictor Stinner2012-08-052-41/+56
| | | | | | | | | | | | | | | | 'u' format of the array module uses again Py_UNICODE type for backward compatibility with Python 3.2. The only change from Python 3.2 is that PyUnicode_AsUnicode() result is now checked for NULL value.
* | merge headsNed Deily2012-08-051-0/+1
|\ \