Gregory P. Smith
a8a3468abe
In the _hashlib module, only initialize the static data for OpenSSL's
constructors once, to avoid memory leaks when finalizing and re-initializing
the Python interpreter.
14 years ago
Gregory P. Smith
c0022b2d8c
Silence a -Wformat-extra-argument warning when compiling.
14 years ago
Ned Deily
acf7b95219
Issue #16256 : OS X installer now sets correct permissions for doc directory.
14 years ago
Gregory P. Smith
a06ad5b366
better news entry
14 years ago
Gregory P. Smith
a998ad0135
Additional fix for Issue #12268 : The io module file object writelines() methods
no longer abort early when one of its write system calls is interrupted (EINTR).
14 years ago
Gregory P. Smith
608cc451c7
Fixes Issue #6972 : The zipfile module no longer overwrites files outside of
its destination path when extracting malicious zip files.
14 years ago
Serhiy Storchaka
f39d52f8cb
Issue #1783 : Remove declarations of nonexistent private variables.
14 years ago
Ezio Melotti
139e445270
#16128 : clarify that instances of user-defined classes compare equal with themselves.
14 years ago
doko@python.org
d65e2bab3b
- Issue #17086 : Backport the patches from the 3.3 branch to cross-build
the package.
14 years ago
Serhiy Storchaka
c5200b489d
Issue #17041 : Fix doctesting when Python is configured with the
--without-doc-strings.
14 years ago
Serhiy Storchaka
8d510cd6e1
Issue #17049 : Localized calendar methods now return unicode if a locale
includes an encoding and the result string contains month or weekday (was
regression from Python 2.6).
14 years ago
Serhiy Storchaka
0be506a5ba
Issue #4844 : ZipFile now raises BadZipfile when opens a ZIP file with an
incomplete "End of Central Directory" record. Original patch by Guilherme
Polo and Alan McIntyre.
14 years ago
Ned Deily
18fae3f954
Issue #13590 : OS X Xcode 4 - improve support for universal extension modules
In particular, fix extension module build failures when trying to use
32-bit-only installer Pythons on systems with Xcode 4 (currently
OS X 10.8, 10.7, and optionally 10.6).
* Backport 3.3.0 fixes to 2.7 branch (for release in 2.7.4)
* Since Xcode 4 removes ppc support, extension module builds now
check for ppc compiler support and by default remove ppc and
ppc64 archs when they are not available.
* Extension module builds now revert to using system installed
headers and libs (/usr and /System/Library) if the SDK used
to build the interpreter is not installed or has moved.
* Try to avoid building extension modules with deprecated
and problematic Apple llvm-gcc compiler. If original compiler
is not available, use clang instead by default.
14 years ago
Michael Foord
77cd8aab23
Issue 15505. unittest.installHandler and non callable signal handlers
14 years ago
Vinay Sajip
b322621a53
Added clarification to logging HOWTO.
14 years ago
Serhiy Storchaka
64cca12622
Move NEWS entity from library to core section.
14 years ago
Serhiy Storchaka
74e449fe6a
Add tests for raw-unicode-escape codec.
14 years ago
Serhiy Storchaka
7277f9d099
Clean up escape-decode decoder tests.
14 years ago
Serhiy Storchaka
f89ad15b12
Merge heads
14 years ago
Serhiy Storchaka
c8e58126a2
Issue #16979 : Fix error handling bugs in the unicode-escape-decode decoder.
14 years ago
Ned Deily
e1c9794957
Issue #14018 : Backport OS X installer updates from 3.3.
14 years ago
Benjamin Peterson
8d15ca3cc6
fix long fixer docs ( #4590 )
14 years ago
Serhiy Storchaka
acf40179c8
Add Robert Xiao to Misc/ACKS for issue17051.
14 years ago
Serhiy Storchaka
46f5b35bc0
Issue #17051 : Fix a memory leak in os.path.isdir() on Windows. Patch by Robert Xiao.
14 years ago
Serhiy Storchaka
80a0a1e170
Fix skip conditions in some docstings tests.
14 years ago
Serhiy Storchaka
d7797c6e7a
Remove trailing whitespaces in cStringIO.h.
14 years ago
Serhiy Storchaka
72121c6c30
- Issue #17041 : Fix testing when Python is configured with the
--without-doc-strings option.
14 years ago
Stefan Krah
6d3a8605a5
Issue #11729 : Backport commit bff052d9 from libffi upstream in order to fix
a ctypes build failure with clang.
14 years ago
Nadeem Vawda
221508cdef
Issue #13886 : Fix input() to not strip out supposedly-invalid input bytes.
14 years ago
Ned Deily
4511e276d5
Issue #14018 : fix merge error
14 years ago
Sandro Tosi
c19d7b6556
fix typo; thanks to Dmitry Northerner from docs@
14 years ago
Stefan Krah
4216aa1e52
Adapt test for build --without-doc-strings.
14 years ago
Serhiy Storchaka
c59c85c1ac
Issue #10156 : In the interpreter's initialization phase, unicode globals
are now initialized dynamically as needed.
14 years ago
Serhiy Storchaka
6fef14d7f3
Optimize the test for issue #13454 .
Now it requires almost 4x less memory and is almost 2x faster.
14 years ago
Serhiy Storchaka
01b3a08f5e
Issue #16975 : Fix error handling bug in the escape-decode decoder.
14 years ago
Ronald Oussoren
1c60c7ac4c
Issue #1602133 : 'environ' is not really available with shared libraries on OSX
There already was a workaround for this for framework builds on OSX,
this changeset enables the same workaround for shared libraries.
Closes #1602133
14 years ago
doko@python.org
fa3f9a38b2
- Issue #3754 : fix typo in pthread AC_CACHE_VAL.
14 years ago
Serhiy Storchaka
9abc830c6a
Issue #9290 : In IDLE the sys.std* streams now implement io.TextIOBase
interface and support all mandatory methods and properties.
14 years ago
doko@python.org
4e63fbe04d
- Issue #17029 : Let h2py search the multiarch system include directory.
14 years ago
Serhiy Storchaka
b09ec9b618
Issue #13454 : Fix a crash when deleting an iterator created by itertools.tee()
if all other iterators were very advanced before.
14 years ago
Serhiy Storchaka
7ee79a2823
Don't run the test for issue #16335 when -M is not specified.
Increase memory limit in this test.
14 years ago
Eli Bendersky
f4fbf24aad
Issue #9708 : clarify doc of iterparse - cElementTree doesn't support the parser argument
14 years ago
Vinay Sajip
eb01949709
Corrected typo, added comment in cookbook recipe.
14 years ago
Ezio Melotti
f5da3ec5ee
#11379 : rephrase minidom documentation to use the term "minimal" instead of "lightweight". Patch by Éric Araujo.
14 years ago
Vinay Sajip
a0c9a4ed75
Added cookbook recipe for structured logging.
14 years ago
Serhiy Storchaka
353e54edc4
Issue #1159051 : GzipFile now raises EOFError when reading a corrupted file
with truncated header or footer.
Added tests for reading truncated gzip and bzip2 files.
14 years ago
Vinay Sajip
0f2bd027a8
Updated logging HOWTO with a diagram.
14 years ago
Vinay Sajip
8a459d977d
Issue #17007 : Made minor changes to documentation wording.
14 years ago
Vinay Sajip
cb309c5fae
Issue #17007 : Improved logging documentation based on suggestions in the issue.
14 years ago
Serhiy Storchaka
e3adb43b4b
Add bigmemtest decorator to test of issue #16335 .
14 years ago