Commit Graph

65575 Commits

Author SHA1 Message Date
Ezio Melotti 7d24b1698a #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. 2012-11-03 17:30:51 +02:00
Georg Brandl d7bae5e85a Grammar touchup. 2012-11-02 07:34:37 +01:00
Andrew Svetlov 5018db76aa Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
Patch by Todd Rovito.
2012-11-01 22:39:14 +02:00
Andrew Svetlov 2c184c6d75 Reword set docs to use *proper subset/superset* terminology. 2012-11-01 21:47:05 +02:00
Antoine Pitrou 0552fc2b8a Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on.
Patch by Serhiy Storchaka.
2012-11-01 20:13:54 +01:00
Antoine Pitrou e9e35c3f6b Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded.
Patch by Serhiy Storchaka.
2012-11-01 20:07:40 +01:00
Mark Dickinson 4ca83ec72d Issue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks Yury Selivanov. 2012-10-31 20:38:52 +00:00
Andrew Svetlov 8a9b401a7d Issue #14900: document added sort keys for profile stats. 2012-10-31 21:54:45 +02:00
Mark Dickinson 89e8f54045 Issue #16348: Fix incorrect documentation for Decimal.remainder_near. 2012-10-31 19:44:09 +00:00
Benjamin Peterson 47fa4d54e8 avoid a function call with redundant checks for dict size 2012-10-31 14:22:12 -04:00
Benjamin Peterson c40ddae84c fix spelling 2012-10-31 14:16:09 -04:00
Benjamin Peterson 0ec820fc5f only fast-path fromkeys() when the constructor returns a empty dict (closes #16345) 2012-10-31 14:05:55 -04:00
Jesus Cea bdf1b9e267 Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT! 2012-10-31 17:00:19 +01:00
R David Murray c454fe4509 #16371: fix up the English. 2012-10-31 10:53:13 -04:00
Andrew Svetlov 6e96e5e966 Issue #16370: Mention Py_SetProgramName in example for very high level embedding. 2012-10-31 16:01:09 +02:00
Andrew Svetlov 227f59b29c Fix docstring for deque ctor to mark iterable parameter optional 2012-10-31 11:50:00 +02:00
Benjamin Peterson 6da3ed63d8 initialize more global type objects (closes #16369) 2012-10-30 23:21:10 -04:00
Andrew Svetlov 1625d88709 Issue #16341: convert examples to use except ... as ... syntax. 2012-10-30 21:56:43 +02:00
Petri Lehtinen 5c89c19eae #14897: Enhance error messages of struct.pack and struct.pack_into
Patch by Matti Mäki.
2012-10-29 21:20:19 +02:00
Chris Jerdonek 64c0b2ca3d Backport from 3.2: remove "Release" and "Date" markers from index pages. 2012-10-28 11:16:36 -07:00
Nadeem Vawda 8e0dfea81c Add test for BZ2Decompressor.decompress("") after end of stream. 2012-10-28 15:20:35 +01:00
Andrew Svetlov 41c25ba451 Issue #14570: Document json sort_keys parameter properly.
Patch by Chris Rebert.
2012-10-28 14:58:52 +02:00
Georg Brandl f4712d4a82 Remove confusing "Release" and "Date" markers from whatsnews. 2012-10-28 13:35:56 +01:00
Mark Dickinson 75d3600466 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. 2012-10-28 10:00:46 +00:00
Georg Brandl 08114d40e9 changeset: 80007:49e4541f2aef
parent: 80003:be83cbf4a789
parent: 80006:32df036e6b75
user: Georg Brandl <georg@python.org>
date: Sun Oct 28 10:50:11 2012 +0100
summary: merge with 3.3
2012-10-28 10:51:35 +01:00
Andrew Svetlov 61822667df Issue #14616: Document pipes.quote and mention this one in subprocess docs.
Patch by Chris Rebert.
2012-10-28 11:48:02 +02:00
Georg Brandl 0685e14645 Update current version of the "dailybuild" script. 2012-10-28 10:12:47 +01:00
Georg Brandl b70290a7d4 Update current version of the "dailybuild" script. 2012-10-28 08:18:52 +01:00
Georg Brandl 5fb657dfab Add a autobuild-quick target that only rebuilds HTML. 2012-10-28 08:09:02 +01:00
Georg Brandl 819574a226 merge with 2.6 2012-10-28 08:06:11 +01:00
Georg Brandl 55f23c4233 #8040: port versionswitcher patch to 2.6. 2012-10-28 08:04:38 +01:00
Ezio Melotti fd3d102af8 #8040: fix the version. 2012-10-27 23:12:48 +03:00
Ezio Melotti 8645890f8b #8040: enable the versionswitcher for the autobuild-dev target. 2012-10-27 22:28:48 +03:00
Ezio Melotti 3d072066c7 #8040: add a version switcher to the documentation. Patch by Yury Selivanov. 2012-10-27 22:04:56 +03:00
R David Murray 54eed2e36d #12890: don't emit <p> tags in text mode when logdir specified.
Patch by Jeff McNeil.
2012-10-27 14:42:36 -04:00
R David Murray 3e66f0d14d #15043: Improve test_gdb support of gdb >= 7.4.
Instead of requiring the tester to manually add the path to the python-gdb.py
file in the checkout to their .gdbinit file, add it automatically when
invoking gdb in the test.
2012-10-27 13:47:49 -04:00
Senthil Kumaran f8d370e30d Add some tests in 2.7 for Issue #16250 2012-10-27 03:48:40 -07:00
Trent Nelson e9992292be Issue #16274: Fix test_asyncore on Solaris. 2012-10-26 22:21:46 -04:00
Ezio Melotti e793f44abe #16332: use "except OSError as e" in subprocess docs. Patch by Berker Peksag. 2012-10-26 23:10:07 +03:00
Ezio Melotti 8221f86513 #16206: Improve examples about dict construction. 2012-10-26 19:14:16 +03:00
Chris Jerdonek 32473e73f4 Backport from 3.2: fix formatting of syntax description of function definition. 2012-10-25 17:26:10 -07:00
Ezio Melotti b74e02e6c2 #16303: remove extra quotes from exception and add (). Initial patch by Vladimir Rutsky. 2012-10-24 23:43:02 +03:00
Ezio Melotti b8fbff889f #16210: combine the two type() docs. Patch by Pete Sevander. 2012-10-24 23:01:30 +03:00
Petri Lehtinen 9ad6a563a7 #15040: Close files in mailbox tests for PyPy compatibility
Original patch by Matti Picus.
2012-10-23 14:42:13 +03:00
Ned Deily e3d47128c5 Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
with certain versions of Tk 8.5.  Initial patch by Kevin Walzer.
2012-10-22 15:13:01 -07:00
Jesus Cea 3dd8cbea9b Closes #16294: 8 space indent in tutorial 2012-10-22 13:14:20 +02:00
Nadeem Vawda 45dba1da32 Issue #14398: Fix size truncation and overflow bugs in bz2 module. 2012-10-21 23:09:08 +02:00
Nadeem Vawda dd72b3f6b7 Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile(). 2012-10-21 18:15:05 +02:00
Antoine Pitrou c30848344c Fix whacky spacing in test_wsgiref 2012-10-21 14:10:29 +02:00
Antoine Pitrou e97a24d06a Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.
2012-10-21 14:09:05 +02:00