Serhiy Storchaka
09f3d080fe
Issue #28350 : String constants with null character no longer interned.
9 years ago
Guido van Rossum
b47c9d29d7
More updates from upstream typing.py
9 years ago
Serhiy Storchaka
cc164232aa
Issue #28295 : Fixed the documentation and added tests for PyUnicode_AsUCS4().
Original patch by Xiang Zhang.
9 years ago
Serhiy Storchaka
63b5b6fd45
Moved Unicode C API related tests to separate test class.
9 years ago
Berker Peksag
480b069270
Issue #20254 : Fix duplicate tests in test_socket
Patch by Vajrasky Kok.
9 years ago
Serhiy Storchaka
d556a35242
Issue #27358 : Backported tests.
9 years ago
Serhiy Storchaka
6498e5270e
Issue #28257 : Backported a test.
9 years ago
Serhiy Storchaka
85c3f268f4
Issue #28322 : Fixed possible crashes when unpickle itertools objects from
incorrect pickle data. Based on patch by John Leitch.
9 years ago
Martin Panter
38317d3318
Issue #28275 : Clean up to avoid use-after-free after bzip decompress failure
9 years ago
Berker Peksag
34b9d14be6
Issue #28283 : Remove flaky test test_sock_connect_sock_write_race again
It was added back in 53a578f51f21.
9 years ago
Berker Peksag
b334ee0063
Issue #28319 : Fix typo in lzma.rst
Reported by Vladimir Rutsky.
9 years ago
Berker Peksag
5e3677d7af
Fix markup in pathlib.rst
9 years ago
Berker Peksag
06a8ac0f26
Fix Path.glob() link, reported by SilentGhost
9 years ago
Terry Jan Reedy
30eee4deec
Issue #28815 : Change '?' to '<module>' in some doc examples.
Patch by Mariatta Wijaya.
9 years ago
Guido van Rossum
e3c65a7a22
Misc asyncio improvements from upstream
9 years ago
Serhiy Storchaka
07cfd504e4
Merge heads
9 years ago
Serhiy Storchaka
00a0fc1144
Issue #27942 : String constants now interned recursively in tuples and frozensets.
9 years ago
Terry Jan Reedy
1813aa1a0c
Issue #25488 : Stpp idle.py from adding a entry when it is a duplicate.
Also, make idlelib.idle.main() work after import idlelib.idle.
9 years ago
Terry Jan Reedy
55f3ae68bb
Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.
Reformat a few early 3.x entries in HEWS.txt.
9 years ago
Victor Stinner
8d50d628b8
Issue #28258 : Explain the LC_ALL change in a comment
9 years ago
Serhiy Storchaka
80bc7dc59e
Issue #28258 : Fixed build with Estonian locale (python-config and distclean
targets in Makefile). Patch by Arfrever Frehtes Taifersar Arahesis.
9 years ago
Benjamin Peterson
4254e8c548
build_ext: correctly parse the link_objects user option ( closes #1703178 )
Patch by Valerie Lambert.
9 years ago
Martin Panter
c49b4d8ef3
Remove disabled ctypes test
The test was commented out in 2005 before ctypes was added to Python, because
the “cdll” attribute loading feature “will no longer work this way”:
http://svn.python.org/view?view=revision&revision=49102
9 years ago
Terry Jan Reedy
6c58c34dd3
IDLE NEWS item and ack.
9 years ago
Berker Peksag
cf79cdb79d
Issue #28306 : Update exception message of ZeroDivisionError
9 years ago
Berker Peksag
ab39b09958
Issue #27740 : Fix typo in Py_CompileStringExFlags
9 years ago
Berker Peksag
aa5c2fdb7c
Issue #28303 : Fix grammar in unittest.__doc__, patch by Shlomi Fish
9 years ago
Berker Peksag
c16387b17f
Issue #28300 : Fix typos, patch by Shlomi Fish
9 years ago
Berker Peksag
de55c612fb
Issue #21903 : Update ctypes example to use MessageBoxW
9 years ago
Alexander Belopolsky
0c6974d934
Issue #28253 : Added a NEWS entry.
9 years ago
Alexander Belopolsky
957b75699f
Issue #28253 : Fixed calendar functions for extreme months: 0001-01 and 9999-12.
Methods itermonthdays() and itermonthdays2() are reimplemented so that they
don't call itermonthdates() which can cause datetime.date under/overflow.
9 years ago
Guido van Rossum
4cefe74aef
Update typing.py and test_typing.py from upstream ( https://github.com/python/typing )
9 years ago
Berker Peksag
63461bc384
Issue #28283 : Remove flaky test test_sock_connect_sock_write_race
9 years ago
Serhiy Storchaka
5ae4f49f4a
Issue #20947 : Fixed a gcc warning with -Wstrict-overflow.
9 years ago
Serhiy Storchaka
47dee11ba7
Issue #21578 : Fixed misleading error message when ImportError called with
invalid keyword args.
9 years ago
Serhiy Storchaka
c0b7037d4f
Issue #28275 : Fixed possible use adter free in LZMADecompressor.decompress().
Original patch by John Leitch.
9 years ago
Martin Panter
f18a5daadd
Issue #26439 : Document that RTLD_NOW is always added
9 years ago
Serhiy Storchaka
407ac47690
Issue #27897 : Fixed possible crash in sqlite3.Connection.create_collation()
if pass invalid string-like object as a name. Patch by Xiang Zhang.
9 years ago
Berker Peksag
a24d2d8274
Issue #10673 : Document that Process.exitcode can be used to determine timeout
Patch by Tom Clark.
9 years ago
Berker Peksag
8b6b50814e
Issue #18893 : Fix invalid exception handling in Lib/ctypes/macholib/dyld.py
Patch by Madison May.
9 years ago
Berker Peksag
6129e14b21
Document that os.mknod() is not available on Windows
Reported by Regina Ochotzki on docs@p.o.
9 years ago
Berker Peksag
996e5f94d2
os.genenvb() is not availabnle under Windows
9 years ago
Serhiy Storchaka
1d480bea9c
Issues #25909 , #28211 : Restored correct documentation of PyMapping_Items,
PyMapping_Keys and PyMapping_Values. Based on patch by Xiang Zhang.
9 years ago
Serhiy Storchaka
b02f8fc3af
Issue #11957 : Restored re tests for passing count and maxsplit as positional
arguments.
9 years ago
Serhiy Storchaka
e6f0199c19
Issue #27611 : Fixed support of default root window in the tkinter.tix module.
9 years ago
Mark Dickinson
613f8e513c
Issue #28203 : Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma.
9 years ago
Martin Panter
8609cda961
Issue #28221 : Remove unused assignment from test_asyncore_server()
The later value of FOO is fine. The test just needs to verify that the server
converted it to lowercase.
9 years ago
Christian Heimes
3cb091e576
Increase buffer for readlink() in case OS will support longer names one day.
9 years ago
Christian Heimes
2f366cab48
Add an extra byte for null in case we ever get very long unicode names.
9 years ago
Victor Stinner
bd2ffa5022
Issue #27829 : regrtest -W displays stderr if env changed
regrtest -W hides output if a test pass, but also when env changed and so the
env changed warning is hidden. So it's hard to debug. With this change, stderr
is now always displayed when a test doesn't pass.
9 years ago