Raymond Hettinger
b46ea90343
Issue #29119: Fix weakref in OrderedDict.move_to_end(). Work by Andra Bogildea.
2016-12-31 12:01:59 -07:00
Berker Peksag
6b5e4a86a7
Issue #26267: Improve uuid.UUID documentation
...
* Document how comparison of UUID objects work
* Document str(uuid) returns the braceless standard form
* Add a test for comparison of a UUID object with a non-UUID object
Patch by Ammar Askar.
2016-12-31 20:08:16 +03:00
Stefan Krah
195319e6bb
Issue #29111: Fix memoryview signature.
2016-12-30 12:23:35 +01:00
Xiang Zhang
cea904f286
Issue #29112: Fix a questionable wording in sequence doc.
2016-12-30 11:57:09 +08:00
Victor Stinner
440d70301b
Issue #29109: Enhance tracemalloc documentation
...
* Wrong parameter name, 'group_by' instead of 'key_type'
* Don't round up numbers when explaining the examples. If they exactly match
what can be read in the script output, it is to easier to understand
(4.8 MiB vs 4855 KiB)
* Fix incorrect method link that was pointing to another module
Patch written by Loic Pefferkorn.
2016-12-30 02:14:59 +01:00
Steve Dower
74b1bcc430
Issue #29080: Fixes Misc/NEWS entry
2016-12-28 15:43:08 -08:00
Steve Dower
7ec8a18514
Issue #29080: Removes hard dependency on hg.exe from PC/build.bat
2016-12-28 14:37:44 -08:00
Serhiy Storchaka
bdf9e0ea74
Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox.
...
Based on patch by Tycho Andersen.
2016-12-28 10:16:06 +02:00
Serhiy Storchaka
283de2b9c1
Issue #9770: curses.ascii predicates now work correctly with negative integers.
2016-12-28 10:04:27 +02:00
Serhiy Storchaka
c9ad8b7a23
Issue #29073: bytearray formatting no longer truncates on first null byte.
2016-12-28 09:54:22 +02:00
Serhiy Storchaka
af9181a4f2
Issue #29087: Removed the documentation of non-existing UCS4 support functions.
2016-12-28 09:19:15 +02:00
Serhiy Storchaka
e721be1faa
Issue #23903: Added missed Windows-specific names to PC/python3.def.
2016-12-27 17:38:16 +02:00
Antoine Pitrou
e10ca3a0fe
Issue #28427: old keys should not remove new values from
...
WeakValueDictionary when collecting from another thread.
2016-12-27 14:19:20 +01:00
Berker Peksag
1fee5151f7
Issue #29069: Update the default URL of PyPI server
...
Patch by paka.
2016-12-27 15:16:25 +03:00
Berker Peksag
8e2bdc8fe8
Move versionadded inside of the get_terminal_size() block
2016-12-27 15:09:11 +03:00
Serhiy Storchaka
6664e8c741
Issue #23903: Added missed names to PC/python3.def.
2016-12-27 12:10:58 +02:00
Serhiy Storchaka
d54d3d3d90
Issue #23903: Fixed errors and remove non-existing names in python3.def.
2016-12-27 11:49:53 +02:00
Xiang Zhang
6721c7c3b2
Issue #29078: Add the missing import in datetime.time doc example.
...
Patch by Dhushyanth Ramasamy.
2016-12-27 12:23:59 +08:00
Serhiy Storchaka
4398c12b47
Issue #29068: Fixed a typo in PyErr_Fetch example.
...
Patch by Chi Hsuan Yen.
2016-12-25 16:22:23 +02:00
R David Murray
b079c07f7d
#25591: improve imap tests.
...
Patch by Maciej Szulik.
2016-12-24 21:32:26 -05:00
Martin Panter
e9ae5f9b16
Issue #28815: Skip TIPC tests if /proc/modules is not readable
...
Based on patch by Patrila.
2016-12-24 10:41:37 +00:00
Martin Panter
7106a51c71
Issue #28954: Add missing comma to keyword argument syntax
2016-12-24 10:20:38 +00:00
Martin Panter
3dbd87f2b9
Issue #1446619: Account for negative slice direction in description
...
Based on suggestion from Fumihiro Bessho.
2016-12-24 08:25:15 +00:00
Martin Panter
3310e146cc
Issue #29004: Document binascii.crc_hqx() implements CRC-CCITT
2016-12-24 07:36:44 +00:00
Martin Panter
972e04ec46
Issue #28960: Drop comma attached to dash in Thread.join() description
2016-12-24 07:28:26 +00:00
Serhiy Storchaka
ab23347916
Sort and remove duplicates from PC/python3.def (issue #23903).
2016-12-23 22:09:48 +02:00
Ned Deily
e31b15c4ce
Update documentation index sidebar for 3.6.0 release.
2016-12-23 04:13:31 -05:00
Brett Cannon
7e93c84438
Grammatical fixes following #d95f19892fd0
2016-12-22 10:02:01 -08:00
Xiang Zhang
ea1cf87030
Issue #29044: Fix a use-after-free in string '%c' formatter.
2016-12-22 15:30:47 +08:00
Terry Jan Reedy
c67983b829
Issue 28923: Remove editor artifacts from Tix.py.
2016-12-21 23:59:47 -05:00
Serhiy Storchaka
18f018ca12
Issue #28871: Fixed a crash when deallocate deep ElementTree.
2016-12-21 12:32:56 +02:00
Benjamin Peterson
fb2ae15c67
add a specific configure check for sys/random.h (closes #28932)
2016-12-19 23:54:25 -08:00
INADA Naoki
6165d55f13
Issue #28147: Fix a memory leak in split-table dictionaries
...
setattr() must not convert combined table into split table.
2016-12-20 09:54:24 +09:00
Xiang Zhang
270a21fda0
Issue #28950: Disallow -j0 combined with -T/-l/-M in regrtest.
2016-12-19 21:01:33 +08:00
Victor Stinner
509476b370
doc: Suggest to hash(tuple of attr) rather than XOR
...
Issue #28383: __hash__ documentation recommends naive XOR to combine but this
is suboptimal. Update the doc to suggest to reuse the hash() method using a
tuple, with an example.
2016-12-19 13:09:28 +01:00
Xiang Zhang
bfbc29cb8f
Issue #29009: Remove outdated doc of PyUnicode_RichCompare.
2016-12-19 18:35:14 +08:00
Antoine Pitrou
c1ee488962
Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and WeakValueDictionary.pop()
...
when a GC collection happens in another thread.
Original patch and report by Armin Rigo.
2016-12-19 10:56:40 +01:00
Martin Panter
ca3263c50c
Issue #25677: Correct syntax error caret for indented blocks.
...
Based on patch by Michael Layzell.
2016-12-11 00:18:36 +00:00
Serhiy Storchaka
b94eef2ae3
Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence that
...
doesn't own its elements as limits.
2016-12-19 08:04:15 +02:00
R David Murray
4ec1590fbf
#29005: clarify terminology in tutorial 'method' discussion.
...
Patch by Jim Fasarakis-Hilliard.
2016-12-18 14:59:58 -05:00
Martin Panter
2f9171d900
Fix spelling and grammar in code comments and documentation
2016-12-18 01:23:09 +00:00
R David Murray
c69fd86f94
#28407 Improve test coverage of make_msgid.
...
Patch by Dillon Brock.
2016-12-17 22:03:44 -05:00
Brett Cannon
5866719510
Update porting HOWTO to drop unicode_literals and mention static type checking
2016-12-17 12:37:20 -08:00
Serhiy Storchaka
b1a1619bf0
Issue #29000: Fixed bytes formatting of octals with zero padding in alternate
...
form.
2016-12-17 21:48:03 +02:00
Raymond Hettinger
af56e0e70f
Issue #28991: Fix obscure reentrancy bug in functools.lru_cache().
2016-12-16 13:57:40 -08:00
Xavier de Gaye
ac13beeef5
Issue #28971: Temporarily skip test_over until a permanent solution is found
...
for issue #28971.
2016-12-16 20:49:10 +01:00
Serhiy Storchaka
16b7b7d6ac
Merge heads
2016-12-16 19:05:33 +02:00
Serhiy Storchaka
20cdffd830
Issue #14061: Misc fixes and cleanups in archiving code in shutil.
...
Imporoved the documentation and tests for make_archive() and unpack_archive().
Improved error handling when corresponding compress module is not available.
Brake circular dependency between shutil and tarfile modules.
2016-12-16 18:58:33 +02:00
Yury Selivanov
b1461aa781
Issue #28990: Fix SSL hanging if connection is closed before handshake completed.
2016-12-16 11:50:41 -05:00
Victor Stinner
610f5d739d
python-gdb.py: catch gdb.error on gdb.selected_frame()
2016-12-16 10:00:39 +01:00