Commit graph

68714 commits

Author SHA1 Message Date
Georg Brandl
3187749646 Merge 3.2.3rc2 from release clone. 2012-03-18 20:37:43 +01:00
Georg Brandl
1eb0f9de99 Post-release updates for 3.2.3rc2. 2012-03-18 08:36:53 +01:00
Georg Brandl
ed77feb503 Added tag v3.2.3rc2 for changeset 428f05cb7277 2012-03-18 07:35:01 +01:00
Georg Brandl
226af70a59 Bump to 3.2.3rc2. 2012-03-18 07:34:49 +01:00
Georg Brandl
1220bd7bdf Merge 2.6.8rc tags into 2.7. 2012-03-18 07:32:22 +01:00
Georg Brandl
222ac8c98f Remove duplicate hgtags entries for 2.6.8rc{1,2}. 2012-03-18 07:31:17 +01:00
Barry Warsaw
9636e462d8 Added tag v2.6.8rc2 for changeset bd9e1a02e3e3 2012-03-17 18:34:05 -04:00
Barry Warsaw
2e9fb8d7e2 null merge 2012-03-17 18:24:09 -04:00
Barry Warsaw
91c4f29a1a null merge from 2.6 2012-03-17 18:23:22 -04:00
Barry Warsaw
b1abc08a29 Added tag v2.6.8rc2 for changeset 1d1b7b9fad48 2012-03-17 18:19:42 -04:00
Barry Warsaw
bd371a4cbb Bump to 2.6.8rc2 2012-03-17 18:19:15 -04:00
Barry Warsaw
2875b5b294 Update Docs and NEWS for 2.6.8rc2. 2012-03-17 18:16:58 -04:00
R David Murray
5c2689a00c #14333: fix test_queue so it can be run via standard unittest test discovery. 2012-03-17 16:44:16 -04:00
R David Murray
c6bfce9871 #14333: fix test_queue so it can be run via standard unittest test discovery. 2012-03-17 16:38:39 -04:00
Georg Brandl
5ab88177a4 Move MANIFEST parsing change to the right position. 2012-03-17 18:38:13 +01:00
Ned Deily
e742adeb8f Issue #14346: Fix some typos in the Mac/README file.
(Patch by Dionysios Kalofonos)
2012-03-17 10:29:41 -07:00
Ned Deily
b07b730e06 Issue #14346: Fix some typos in the Mac/README file.
(Patch by Dionysios Kalofonos)
2012-03-17 10:25:27 -07:00
Georg Brandl
94a105705f Closes #14250: regex.flags has not only explicit flags but also those from the pattern 2012-03-17 17:31:32 +01:00
Georg Brandl
3a19e542ff Closes #14250: regex.flags has not only explicit flags but also implicit flags and those from the pattern 2012-03-17 17:29:27 +01:00
Georg Brandl
5a607b06d6 Closes #14343: avoid shadowing builtin input() in example code. 2012-03-17 17:26:27 +01:00
Georg Brandl
557a3ec9bb Closes #14343: avoid shadowing builtin input() in example code. 2012-03-17 17:26:27 +01:00
Georg Brandl
ce54617260 Closes #14342: remove out-of-date section about avoiding recursion errors. 2012-03-17 17:25:47 +01:00
Georg Brandl
5ec6fdb0f6 Closes #14342: remove out-of-date section about avoiding recursion errors. 2012-03-17 17:25:47 +01:00
Georg Brandl
f354f8e369 Closes #14306: clarify expensiveness of try-except and update code snippet 2012-03-17 16:58:05 +01:00
Georg Brandl
12c3cd7c1f Closes #14306: clarify expensiveness of try-except and update code snippet 2012-03-17 16:58:05 +01:00
Senthil Kumaran
f2123d2db5 3.2 explain json.dumps for non-string keys in dicts. closes issue6566. Patch contributed Kirubakaran Athmanathan 2012-03-17 00:40:34 -07:00
Senthil Kumaran
e3d73544ad explain json.dumps for non-string keys in dicts. closes issue6566. Patch contributed Kirubakaran Athmanathan 2012-03-17 00:37:38 -07:00
R David Murray
eebe1112ff #11686: news entry. 2012-03-16 22:49:54 -04:00
R David Murray
1b6c724df0 #11686: add missing entries to email __all__ lists.
Original patch by Steffen Daode Nurpmeso
2012-03-16 22:43:05 -04:00
R David Murray
bee24df3a7 #11780: s/throw/raise/ 2012-03-16 22:11:22 -04:00
R David Murray
41914349ad #11780: s/throw/raise/ 2012-03-16 22:10:00 -04:00
R David Murray
0cc4e53d1d #11780: document that email.encoders throw TypeError on multipart messages. 2012-03-16 22:06:08 -04:00
R David Murray
69ebfe43b0 #11780: document that email.encoders throw TypeError on multipart messages. 2012-03-16 22:03:17 -04:00
Benjamin Peterson
dbc52f8a0d check for string attribute names in old-style classes (closes #14334) 2012-03-16 10:58:46 -05:00
Eli Bendersky
969b8daf5a Issue #14202: some additional doc fixes 2012-03-16 16:49:58 +02:00
Benjamin Peterson
6e7832b04c check to make sure the attribute is a string (#14334) 2012-03-16 09:32:59 -05:00
Benjamin Peterson
16d84ac355 check to make sure the attribute is a string (#14334) 2012-03-16 09:32:59 -05:00
Eli Bendersky
3fb05a90ce Issue #14202: Greatly enhance the documentation of xml.dom.pulldom.
Patch by Florian Mladitsch
2012-03-16 14:37:14 +02:00
Senthil Kumaran
be3f851411 closes issue10484 - Fix the http.server's cgi PATH_INFO handling problem 2012-03-16 01:13:50 -07:00
Senthil Kumaran
51a65c9161 2.7 - Issue #10484: Fix the CGIHTTPServer's PATH_INFO handling problem 2012-03-16 01:07:16 -07:00
Eli Bendersky
604c4ff43d Issue #9257: clarify the events iterparse accepts 2012-03-16 08:41:30 +02:00
Senthil Kumaran
6b3434ae04 Explain the use of charset parameter with Content-Type header. Issue11082 2012-03-15 18:11:16 -07:00
Senthil Kumaran
73277fe0eb closes Issue #11199: Fix the with urllib which hangs on particular ftp urls. 2012-03-15 13:26:12 -07:00
Senthil Kumaran
4c59211bd5 Fix the urllib closing issue which hangs on particular ftp urls/ftp servers. closes issue11199 2012-03-15 13:24:40 -07:00
Benjamin Peterson
d6c75b5a03 Added tag v3.1.5rc2 for changeset 75db2bc69fc9 2012-03-15 13:58:31 -05:00
Benjamin Peterson
c7536c4ff5 merge heads 2012-03-15 13:57:38 -05:00
Benjamin Peterson
ba98788bc5 bump to 3.1.5rc2 2012-03-15 13:57:27 -05:00
Benjamin Peterson
f1acd0ab38 merge from 2.7 release branch 2012-03-15 13:01:04 -05:00
Benjamin Peterson
bf6bf4f8f2 Added tag v2.7.3rc2 for changeset d46c1973d3c4 2012-03-15 12:59:07 -05:00
Benjamin Peterson
ee933eccc9 bump to 2.7.3rc2 2012-03-15 12:25:54 -05:00