Brian Curtin
c014448108
Put my name down for winreg.
2010-07-11 23:32:11 +00:00
Benjamin Peterson
5ef96e5fac
allow byte literals
2010-07-11 23:06:06 +00:00
Mark Dickinson
c762242cca
Include versionadded in (c)math.isfinite docs (thanks Ezio Melotti). Other minor doc cleanups.
2010-07-11 19:47:37 +00:00
Mark Dickinson
68c5de6d1c
assertEquals -> assertEqual
2010-07-11 19:12:10 +00:00
Mark Dickinson
b214e90e01
Issue #9137 : Fix issue in MutableMapping.update, which incorrectly
...
treated keyword arguments called 'self' or 'other' specially.
2010-07-11 18:53:06 +00:00
Mark Dickinson
226f544caa
Improve docstrings for isnan, isinf and isfinite.
2010-07-11 18:13:41 +00:00
Martin v. Löwis
25fcd392aa
Issue #8974 : fix print calls in msgfmt.py.
2010-07-11 17:39:46 +00:00
Mark Dickinson
8e0c996873
Issue #9165 : Add math.isfinite and cmath.isfinite.
2010-07-11 17:38:24 +00:00
Benjamin Peterson
3e7428995f
test for set literals
2010-07-11 12:59:24 +00:00
Antoine Pitrou
1ac745b5c5
Issue #7616 : Fix copying of overlapping memoryview slices with the Intel
...
compiler.
2010-07-11 12:12:00 +00:00
Georg Brandl
349d558e0d
#9223 : link to Command class reference, and move Command interface docs nearer to class docs.
2010-07-11 10:22:44 +00:00
Georg Brandl
05bfcc590d
#7935 : cross-reference to ast.literal_eval() from eval() docs.
2010-07-11 09:42:10 +00:00
Georg Brandl
492f3fc272
Allow set literals in literal_eval().
2010-07-11 09:41:21 +00:00
Georg Brandl
e40ee509e3
#9184 : fix default value for "buffering" param of open().
2010-07-11 09:33:39 +00:00
Georg Brandl
de41bf3dd5
Fix typo.
2010-07-11 09:26:57 +00:00
Georg Brandl
0104bcdb80
#6774 : explain shutdown() behavior varying with platform.
2010-07-11 09:23:11 +00:00
Ronald Oussoren
d3950527e7
Fix for issue 9164
2010-07-11 09:05:07 +00:00
Georg Brandl
8a1c2543ff
#3214 followup: add link to ABC entry.
2010-07-11 08:36:20 +00:00
Georg Brandl
692b3f8035
Silence makeindex.
2010-07-11 08:33:16 +00:00
Senthil Kumaran
aba088e01d
Issue2007: Removing reference to MSIE Cookie handling by mechanize. Suggested by John J Lee.
2010-07-11 05:01:52 +00:00
Benjamin Peterson
3b107f99c7
remove unneeded error check
2010-07-11 03:36:35 +00:00
Senthil Kumaran
2ef16328e8
Stricter verification for file based url scheme and reliance on ftp protocol.
2010-07-11 03:12:43 +00:00
Benjamin Peterson
0d62f5bbfe
ValueError is eventually what we want to move to, I suppose
2010-07-10 15:14:45 +00:00
R. David Murray
522c32a7e3
Add missing docs for re module 'purge' function.
2010-07-10 14:23:36 +00:00
Michael Foord
c653ce313f
Fix error message for comparing single line strings in unittest.TestCase.assertEqual.
...
Issue 9174.
2010-07-10 13:52:22 +00:00
R. David Murray
0425a8ea72
Fix 'refleak' introduced by fnmatch cache purge tests.
...
This introduces a 'purge' function for the fnmatch module analogous
to the 'purge' function in the re module.
2010-07-10 13:52:13 +00:00
Georg Brandl
a851483527
#8564 : update docs on integrating doctest/unittest with unittest(2) test discovery.
2010-07-10 12:20:38 +00:00
Georg Brandl
1c616a5c92
#8456 : fix signature of sqlite3.connect().
2010-07-10 12:01:34 +00:00
Georg Brandl
47d48bb3e7
#8338 : fix outdated class name.
2010-07-10 11:51:06 +00:00
Georg Brandl
297d97241a
#1434090 : properly append child in expatbuilder doctype handler.
2010-07-10 11:40:13 +00:00
Georg Brandl
73b1c7ba7d
#3214 : improve description of duck-typing in glossary.
2010-07-10 10:39:57 +00:00
Georg Brandl
0310a83e7f
#3071 : tell how many values were expected when unpacking too many.
2010-07-10 10:32:36 +00:00
Georg Brandl
93eb42e805
Emphasize role of count for Pascal string.
2010-07-10 10:23:40 +00:00
Georg Brandl
b382337ed6
Fix markup.
2010-07-10 08:58:37 +00:00
Jeffrey Yasskin
61c061a8b3
Oops. Fix distutils tests that r82746 broke.
2010-07-09 19:55:05 +00:00
Benjamin Peterson
b669221bd1
be more robust across platforms
2010-07-09 19:37:00 +00:00
Mark Dickinson
10de93a715
Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function).
2010-07-09 19:25:48 +00:00
Benjamin Peterson
34d17debb7
remove SocketIO.__del__; close() can handle it
2010-07-09 18:28:25 +00:00
Jeffrey Yasskin
d4fcdb1ea8
Issue #9189 : Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running
...
configure to append to Python's default values for those variables, and
similarly allow users to set $XXFLAGS on the make command line to append to the
values set by configure.
In the makefile, this renames the variables that used to be $XXFLAGS to
$PY_XXFLAGS, and renames the old $PY_CFLAGS to $PY_CORE_CFLAGS. To compensate,
sysconfig now aliases $XXFLAGS=$PY_XXFLAGS so that scripts using it keep
working. I see that as the right interface, not a backward-compatibility hack,
since these are logically the $XXFLAGS variables; we just use a different name
in the makefile to deal with make's semantics.
2010-07-09 16:30:58 +00:00
Brian Curtin
74e4561a3c
Re-flow several long lines from #1578269 .
2010-07-09 15:58:59 +00:00
Brian Curtin
c739569be0
Adding versionchanged to the various Windows os.symlink additions, along
...
with a few minor touchups.
2010-07-09 15:15:09 +00:00
Brian Curtin
16633fa497
Fix the breakage of Lib/tarfile.py on non-Windows platforms due to
...
using WindowsError in a try/except. Only add WindowsError to the list of
exceptions to catch when we are actually running on Windows.
Additionally, add a call that was left out in test_posixpath.
Thanks Amaury, Antoine, and Jason.
2010-07-09 13:54:27 +00:00
Benjamin Peterson
4b83af9576
wrap
2010-07-09 13:31:11 +00:00
Benjamin Peterson
a04a32d586
allow more exceptions
2010-07-09 13:28:42 +00:00
Brian Curtin
c2f583a7f9
Reorder Jason "two O's" Coombs
2010-07-09 13:22:07 +00:00
Benjamin Peterson
ccbcf53865
OverflowError is fine
2010-07-09 13:20:40 +00:00
R. David Murray
893766cd0b
Fix sort order mistake in Misc/ACKS.
2010-07-09 13:14:03 +00:00
R. David Murray
ea340a317a
7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.
...
Patch by Andrew Clegg.
2010-07-09 12:23:21 +00:00
Georg Brandl
facb0e9a76
2.7 is now stable.
2010-07-09 07:33:15 +00:00
Benjamin Peterson
8b0ef21c15
use assert method
2010-07-09 01:58:26 +00:00