Meador Inge
80dd1af4e0
Issue #15424 : Add a __sizeof__ implementation for array objects.
Patch by Ludwig Hähne.
14 years ago
Meador Inge
03b4d5072a
Issue #15424 : Add a __sizeof__ implementation for array objects.
Patch by Ludwig Hähne.
14 years ago
Philip Jenvey
688a551ca0
fix docstring wording
14 years ago
Brett Cannon
522267e784
Issue #15610 : The PyImport_ImportModuleEx macro now calls
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.
14 years ago
Brett Cannon
f410ce8c09
Issue #15502 : Refactor some code.
14 years ago
Senthil Kumaran
e9175bd0af
Fix issue #15607 : Update the print builtin function docstring with the new flush keyword.
Patch contributed by Daniel Ellis.
14 years ago
Philip Jenvey
731d48a65f
update docstring per the extension package fix, refactor
14 years ago
Brett Cannon
ac9f2f3de3
Issue #15576 : Allow extension modules to be a package's __init__
module again. Also took the opportunity to stop accidentally exporting
_imp.extension_suffixes() as public.
14 years ago
Brett Cannon
f4dc9204cc
Issue #15502 : Finish bringing importlib.abc in line with the current
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.
14 years ago
Victor Stinner
2d6266d5f1
Remove now unused IntOrLongToString type
14 years ago
Andrew Svetlov
25a02d403c
Issue #15601 : fix tkinter test_variables failure with OS X Aqua Tk 8.4
14 years ago
Andrew Svetlov
7dac74a0ca
fix docs for c-api memory functions
14 years ago
Andrew Svetlov
7dbee38564
fix docs for c-api memory functions
14 years ago
Andrew Svetlov
1ee02670b8
merge heads
14 years ago
Andrew Svetlov
eec6420de4
Issue #15501 : Document exception classes in subprocess module.
Initial patch by Anton Barkovsky.
14 years ago
Andrew Svetlov
b4a09abfce
Issue #15501 : Document exception classes in subprocess module.
Initial patch by Anton Barkovsky.
14 years ago
Andrew Svetlov
e939f383c1
Fix documentation for inspect module to pass doctest
14 years ago
Eli Bendersky
efcaba065e
Add description of major changes in xml.etree.ElementTree to whatsnew/3.3
14 years ago
Ned Deily
3a2b97e48a
Issue #14992 : merge from 3.2
14 years ago
Ned Deily
c622f4254b
Issue #14992 : Prevent test_os test_exist_ok_s_isgid_directory test case
failure on OS X built with 10.4 ABI.
14 years ago
Victor Stinner
3cc635dabb
faulthandler: fix the handler of user signals
Restore the errno before calling the previous signal handler, and not after.
14 years ago
Benjamin Peterson
652e758fc4
merge heads
14 years ago
Benjamin Peterson
1a1367b821
use char instead of int to please T_BOOL ( closes #15597 )
14 years ago
Victor Stinner
9d512ab97f
Issue #13072 : Fix test_array for installation without the ctypes module
14 years ago
Larry Hastings
22701e86d0
Issue #15589 : Ensure double-alignment for brute-force capi argument parser test
that occasionally uses doubles.
14 years ago
Victor Stinner
2965011668
regrtest: give more information when a child process fails with an error
different than KeyboardInterrupt
14 years ago
Victor Stinner
bded28c081
Issue #13072 : Ooops, now fix test_array for Linux with 32-bit wchar_t...
14 years ago
Victor Stinner
8d4734f6b2
Issue #13072 : Fix test_array for Windows with 16-bit wchar_t
14 years ago
doko@ubuntu.com
3277b35183
- Issue #11715 : Fix multiarch detection without having Debian development
tools (dpkg-dev) installed.
14 years ago
Ned Deily
20416a20b7
Issue #15560 : Ensure consistent sqlite3 behavior and feature availability
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.
14 years ago
Benjamin Peterson
0ed05059de
merge heads
14 years ago
Benjamin Peterson
b37df519c7
fix yield from return value on custom iterators ( closes #15568 )
14 years ago
Brett Cannon
d340b43d75
Issue #15163 : Pydoc shouldn't show __loader__ as a part of a module's
data.
Also alphabetized the attributes in the blacklist to make it easier to
detect changes.
Initial patch by Éric Araujo.
14 years ago
Brett Cannon
cb4996afe4
Issue #15471 : Don't use mutable object as default values for the
parameters of importlib.__import__().
14 years ago
R David Murray
638de338e6
Merge #15554 : clarify splitlines/split differences.
Patch by Chris Jerdonek.
14 years ago
R David Murray
05c35a6a6b
#15554 : clarify splitlines/split differences.
Patch by Chris Jerdonek.
14 years ago
Ned Deily
a0abb4404a
Issue #15037 : Build OS X installers with local copy of ncurses 5.9 libraries
to avoid curses.unget_wch bug present in older versions of ncurses such as
those shipped with OS X.
14 years ago
Ned Deily
dfca8c95c4
OS X installer cleanups:
- 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.
14 years ago
Brett Cannon
222d473df4
Issue #15482 : Merge 78449:3fe01f7520e2 with a minor clarification.
14 years ago
Brett Cannon
9b000e7a68
Issue #15482 : Properly document the default 'level' parameter for
__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.
14 years ago
Brett Cannon
ecfefb7956
Fix a spelling mistake in a comment.
14 years ago
Victor Stinner
62bb394729
Close #13072 : Restore code before the PEP 393 for the array module
'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.
14 years ago
Ned Deily
3af2617401
merge heads
14 years ago
Ned Deily
9b635837c5
Issue #15560 : Fix building _sqlite3 extension on OS X with an SDK.
14 years ago
Ned Deily
9ccf82d844
Issue #15560 : null merge
14 years ago
Benjamin Peterson
21603c96e8
merge heads
14 years ago
Benjamin Peterson
4eda93723e
add another testcase
14 years ago
Ned Deily
03e2180b3f
Issue #15560 : Fix building _sqlite3 extension on OS X with an SDK.
14 years ago
Victor Stinner
636130ed65
What's New in Python 3.3: Split improved and new modules, start to write a summary
14 years ago
Victor Stinner
8f17c1c00d
Complete What's New in Python 3.3.
14 years ago