Serhiy Storchaka
00a0fc1144
Issue #27942 : String constants now interned recursively in tuples and frozensets.
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
Steve Dower
fb4a96a58f
Issue #28251 : Improvements to help manuals on Windows.
9 years ago
Serhiy Storchaka
208bbd29d3
Silence GCC warning.
The code was correct, but GCC is not enough clever.
9 years ago
Christian Heimes
55b196a1e4
Make Lib/test/ssltests.py more useful and faster for OpenSSL testing
9 years ago
Martin Panter
463ef2b3cf
Fix references to Python 3’s socketserver (lowercase) module
9 years ago
Martin Panter
bb8b1cb6af
Issue #27348 : Restore “Exception: None” formatting in traceback module
This fixes a regression caused by revision 73afda5a4e4c. Also reverts the
decimal test workaround added in revision 5f3dd0a2b1ab.
Remove test_without_exception(). According to revision ecaafc32c500, this was
added in Python 2 so that print_exc() would output “None” when called with no
exception set. However print_exc() never worked like this in Python 3, and
the use case is not documented.
Restore TracebackCases class name (instead of SyntaxTracebackCases), because
the class also tests other exceptions.
9 years ago
Serhiy Storchaka
92bb90a9ff
Extend the test to lower pickle protocols.
9 years ago
Berker Peksag
16ea19fc66
Issue #25651 : Allow falsy values to be used for msg parameter of subTest()
9 years ago
Victor Stinner
1ddf53d496
Fix PyUnicode_FromFormatV() error handling
Issue #28233 : Fix a memory leak if the format string contains a non-ASCII
character, destroy the unicode writer.
9 years ago
Victor Stinner
0256f42839
test_asynico: fix test_sock_connect_sock_write_race()
Issue #28176 : Increase timeout from 10 seconds to 60 seconds.
9 years ago
Victor Stinner
6d8bc46cc0
Catch EPERM error in py_getrandom()
Issue #27955 : Fallback on reading /dev/urandom device when the getrandom()
syscall fails with EPERM, for example when blocked by SECCOMP.
9 years ago
Victor Stinner
af59732102
Cleanup random.c
Issue #27955 : modify py_getrnadom() and dev_urandom()
* Add comments from Python 3.7
* PEP 7 style: add {...}
9 years ago
Ned Deily
a327331cec
Make 3.7 the current dev version in the html version of the docs.
9 years ago
Benjamin Peterson
918aa89483
remove trailing whitespace
9 years ago
Jesus Cea
647680ec2c
Docs: Correctly link to the methods
9 years ago
Benjamin Peterson
57bda335e1
merge 3.4
9 years ago
Benjamin Peterson
26d998cfdd
properly handle the single null-byte file ( closes #24022 )
9 years ago
Raymond Hettinger
7eb1becc25
Issue #28189 : dictitems_contains no longer swallows compare errors.
(Patch by Xiang Zhang)
9 years ago