Serhiy Storchaka
6c22b1d760
Issue #17141 : random.vonmisesvariate() no more hangs for large kappas.
14 years ago
Serhiy Storchaka
5e61f14c6d
Issue #12983 : Bytes literals with invalid \x escape now raise a SyntaxError
and a full traceback including line number.
14 years ago
Mark Dickinson
be5f91957f
Issue #17149 : Fix random.vonmisesvariate to always return results in [0, 2*math.pi].
14 years ago
Serhiy Storchaka
497cee456c
Fix a test for SpooledTemporaryFile (added in issue #10355 ).
14 years ago
Serhiy Storchaka
88efc52d74
Issue #1470548 : XMLGenerator now works with binary output streams.
14 years ago
Serhiy Storchaka
df32691e6f
Issue #6975 : os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms.
14 years ago
Antoine Pitrou
4de7457009
Issue #17173 : Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
I've left a couple of them in: zlib (third-party lib), getaddrinfo.c
(doesn't include Python.h, and probably obsolete), _sre.c (legitimate
use for the re.LOCALE flag).
14 years ago
Serhiy Storchaka
b6ed17344b
Issue #17156 : pygettext.py now uses an encoding of source file and correctly
writes and escapes non-ascii characters.
14 years ago
R David Murray
041d553319
#17166 : fix _dummy_thread import example.
Report and patch by Berker Peksag.
14 years ago
R David Murray
ceaa8b1d75
#16564 : Fix regression in use of encoders.encode_noop with binary data.
14 years ago
Christian Heimes
d489c7a0a3
add proper dependencies on expat headers and sources
14 years ago
Serhiy Storchaka
bbbbe8eb60
Issue #10355 : SpooledTemporaryFile properties now work for unrolled files.
Remove obsoleted xreadline method.
14 years ago
Serhiy Storchaka
4b109cb4a8
Minor fix of previous commit.
14 years ago
Serhiy Storchaka
4f169a7a4d
Issue #17147 . Mention BytesIO in SpooledTemporaryFile documentation.
14 years ago
Serhiy Storchaka
01ad622a2c
Issue #16686 : Fixed a lot of bugs in audioop module.
* avgpp() and maxpp() no more crash on empty and 1-samples input fragment. They now work when peak-peak values are greater INT_MAX.
* ratecv() no more crashes on empty input fragment.
* Fixed an integer overflow in ratecv().
* Fixed an integer overflow in add() and bias() for 32-bit samples.
* reverse(), lin2lin() and ratecv() no more lose precision for 32-bit samples.
* max() and rms() no more returns negative result for 32-bit sample -0x80000000.
* minmax() now returns correct max value for 32-bit sample -0x80000000.
* avg(), mul(), tomono() and tostereo() now round negative result down and can return 32-bit sample -0x80000000.
* add() now can return 32-bit sample -0x80000000.
14 years ago
Ned Deily
a48b61f8f2
Issue #17161 : make install now also installs a python3 man page.
14 years ago
Serhiy Storchaka
1273dfc39c
Fix accidental non-breakable spaces (U+00A0).
14 years ago
Gregory P. Smith
f1319d81f7
Issue #6972 : keep the warning about untrusted extraction and mention
the version it was improved in.
14 years ago
Senthil Kumaran
d03f467dc2
Addressing the review comment made by Terry Reedy
14 years ago
Serhiy Storchaka
3cf96ac248
Issue #17073 : Fix some integer overflows in sqlite3 module.
14 years ago
Serhiy Storchaka
3fd4ab356d
Issue #17043 : The unicode-internal decoder no longer read past the end of
input buffer.
14 years ago
Serhiy Storchaka
df4bb46457
Issue #17118 : Add new tests for testing Python-Tcl interaction.
14 years ago
Serhiy Storchaka
8995300298
Issue #17114 : IDLE now uses non-strict config parser.
14 years ago
Serhiy Storchaka
c2255ac153
Fix test_from_dll* in test_returnfuncptrs.py.
14 years ago
Senthil Kumaran
b98e96a23f
Fix Issue17069: Document getcode method in urllib.request.rst
14 years ago
R David Murray
1acaf0bce2
#17142 : fix apparent copy and paste error in test_all.
14 years ago
Serhiy Storchaka
b5b9c8cd40
Issue #16723 : httplib.HTTPResponse no longer marked closed when the connection
is automatically closed.
14 years ago
R David Murray
f581b37200
#16948 : Fix quopri encoding of non-latin1 character sets.
14 years ago
Serhiy Storchaka
43536e9e37
Issue #17089 : Expat parser now correctly works with string input not only when
an internal XML encoding is UTF-8 or US-ASCII. It now accepts bytes and
strings larger than 2 GiB.
14 years ago
R David Murray
95b7110a11
#17091 : update docstring for _thread.Lock.acquire.
The main docs were fixed to remove mention of None long ago,
but the docstring was not. Reported by Armin Rigo, patch
by Ian Cordasco.
14 years ago
Serhiy Storchaka
db1ba4eeac
Fix test_tools hangs on Windows. Patch by Jeremy Kloth.
14 years ago
Serhiy Storchaka
b3f194d109
Issue #16903 : Popen.communicate() on Unix now accepts strings when
universal_newlines is true as on Windows.
14 years ago
Serhiy Storchaka
0b4591e0eb
Do not raise self.skipTest().
skipTest() already raises an exception.
14 years ago
Serhiy Storchaka
a66b46aad6
Temporarily disable test_from_dll in test_returnfuncptrs.py for Windows.
14 years ago
Serhiy Storchaka
19c4e0df29
Issue #6083 : Fix multiple segmentation faults occured when PyArg_ParseTuple
parses nested mutating sequence.
14 years ago
Gregory P. Smith
64359d203e
Update the embedded copy of the expat XML parser to 2.1.0. It brings
with it a vareity of bug fixes, both security and behavior. See
http://www.libexpat.org/ for the list.
NOTE: I already backported the expat hash randomization fix in March.
Fixes issue #14340 .
14 years ago
Serhiy Storchaka
94dc6736bd
Issue #17106 : Fix a segmentation fault in io.TextIOWrapper when an underlying
stream or a decoder produces data of an unexpected type (i.e. when
io.TextIOWrapper initialized with text stream or use bytes-to-bytes codec).
14 years ago
Ned Deily
028915e6ea
Issue #16698 : Skip posix test_getgroups when built with OS X
deployment target prior to 10.6.
14 years ago
Antoine Pitrou
de59565f29
Simplify code in HTTPResponse.read()
14 years ago
Antoine Pitrou
beec61ae4e
Issue #15633 : httplib.HTTPResponse is now mark closed when the server sends less than the advertised Content-Length.
14 years ago
Nadeem Vawda
6375257188
Back out fix for issue #13886 ; it introduced a new bug in interactive readline use.
14 years ago
Serhiy Storchaka
e5e6444497
Fix the test for issue #6972 .
Remove trailing dots on Windows.
14 years ago
Serhiy Storchaka
f458a03617
Issue #17034 : Use Py_CLEAR() in bytesobject.c.
14 years ago
Serhiy Storchaka
44b8cbfcba
Fix a Cyrillic "C" inroduced into the docs by patch for issue #6972 .
14 years ago
Serhiy Storchaka
1a4ed4ce18
Fix tests for issue #11159 .
14 years ago
Serhiy Storchaka
5a9c1a753f
Merge heads
14 years ago
Serhiy Storchaka
d52023968a
Issue #11159 : Add tests for testing SAX parser support of non-ascii file names.
14 years ago
Ned Deily
ae8d6ac3f4
Issue #15116 : Remove references to appscript as it is no longer being
supported.
14 years ago
Ned Deily
9cd864dcbf
Issue #15587 : Enable Tk high-resolution text rendering on Macs with
Retina displays. Applies to Tkinter apps, such as IDLE, on OS X
framework builds linked with Cocoa Tk 8.5+.
Suggested by Kevin Walzer
14 years ago
Gregory P. Smith
aded2e5e59
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