Giampaolo Rodola'
ea605cd152
attempt to fix asyncore buildbot failure
2012-03-23 15:04:27 +01:00
krisvale
479c8f8c51
Issue #10538 - Update Misc/NEWS
2012-03-22 20:17:42 +00:00
Kristján Valur Jónsson
50b6778bda
Issue #10538 . Put a reference to the source object in the Py_buffer when
...
converting the old buffer for PyArgs_ParseTuple with *s
2012-03-22 16:35:37 +00:00
Giampaolo Rodola'
96cb5d15c1
fix #10340 : properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect.
2012-03-22 16:06:43 +01:00
Benjamin Peterson
219a05094b
this should technicaly be identifier
2012-03-22 10:39:16 -04:00
Benjamin Peterson
72c6227df8
merge heads
2012-03-22 08:57:56 -04:00
Benjamin Peterson
e90cdaa185
check for NULL
2012-03-22 08:56:15 -04:00
Benjamin Peterson
eff19a13ed
check by equality for __future__ not identity ( closes #14378 )
2012-03-22 08:19:04 -04:00
R David Murray
b3f95d7ff1
#12757 : Make doctest skipping in -OO mode work with unittest/regrtest -v
2012-03-21 15:02:30 -04:00
Andrew Svetlov
7c010ee00c
#3573 : idle now doesn't hungs if launched as: idle -e <directory>
...
Patch by Guilherme Polo.
2012-03-21 13:35:08 +02:00
Giampaolo Rodola'
3d3cf48e53
Fix issue #13694 : asynchronous connect in asyncore.dispatcher does not set addr.
2012-03-20 16:46:57 +01:00
Benjamin Peterson
0e3c107549
merge from release branch
2012-03-20 10:40:55 -04:00
Benjamin Peterson
02fa3b9571
merge tag
2012-03-20 10:40:26 -04:00
Benjamin Peterson
e79499504e
merge heads
2012-03-18 21:23:22 -04:00
Benjamin Peterson
f72ef7882c
merge 2.7.3 release branch
2012-03-18 21:22:45 -04:00
Gregory P. Smith
fcdf04becc
Fixes Issue #14331 : Use significantly less stack space when importing modules by
...
allocating path buffers on the heap instead of the stack.
2012-03-18 16:07:10 -07:00
Martin v. Löwis
cdc60aac3d
Add 2.7.3rc2 uuid
2012-03-18 23:46:56 +01:00
Martin v. Löwis
28b22d0d15
Add 2.7.3rc2 uuid
2012-03-18 23:46:56 +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
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
5a607b06d6
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
f354f8e369
Closes #14306 : clarify expensiveness of try-except and update code snippet
2012-03-17 16:58:05 +01: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
bee24df3a7
#11780 : s/throw/raise/
2012-03-16 22:11:22 -04:00
R David Murray
0cc4e53d1d
#11780 : document that email.encoders throw TypeError on multipart messages.
2012-03-16 22:06:08 -04:00
Benjamin Peterson
dbc52f8a0d
check for string attribute names in old-style classes ( closes #14334 )
2012-03-16 10:58:46 -05:00
Benjamin Peterson
6e7832b04c
check to make sure the attribute is a string ( #14334 )
2012-03-16 09:32:59 -05:00
Senthil Kumaran
51a65c9161
2.7 - Issue #10484 : Fix the CGIHTTPServer's PATH_INFO handling problem
2012-03-16 01:07:16 -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
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
R David Murray
32a3b147b2
#12758 : removing confusing mention of UTC from time.time description
...
Patch by Dylan Sarber.
2012-03-15 03:05:01 -04:00
Benjamin Peterson
66d2bd7fae
merge heads
2012-03-14 21:07:00 -05:00
Gregory P. Smith
7210025aa3
merge heads.
2012-03-14 18:13:25 -07:00
Gregory P. Smith
99576c04f1
Fixes Issue 14234: fix for the previous commit, keep compilation when
...
using --with-system-expat working when the system expat does not have
salted hash support.
2012-03-14 18:12:23 -07:00
Gregory P. Smith
c10f5c2828
Fixes Issue 14234: fix for the previous commit, keep compilation when
...
using --with-system-expat working when the system expat does not have
salted hash support.
2012-03-14 18:12:23 -07:00
Barry Warsaw
e236ad3113
merge 2.6
2012-03-14 17:18:46 -07:00
Barry Warsaw
e9bc2f773f
- Issue #14234 : CVE-2012-0876: Randomize hashes of xml attributes in the hash
...
table internal to the pyexpat module's copy of the expat library to avoid a
denial of service due to hash collisions. Patch by David Malcolm with some
modifications by the expat project.
2012-03-14 17:10:41 -07:00
Matthias Klose
3cef2a931c
- rename configure.in to configure.ac
...
- change references from configure.in to configure.ac
2012-03-14 23:39:33 +01:00