Victor Stinner
|
c5982967fc
|
Issue #4953: add the author of the patch
|
2011-01-14 14:11:45 +00:00 |
Victor Stinner
|
c58be2ddc0
|
urllib doc: add versionchanged sections for parse_qs() and parse_qsl()
|
2011-01-14 13:31:45 +00:00 |
Victor Stinner
|
f1c7ca93c1
|
cgi: use isinstance(x, list) instead of type(x) == type([])
|
2011-01-14 13:08:27 +00:00 |
Victor Stinner
|
5c23b8e6ea
|
Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not
as unicode, and accept binary files. Add encoding and errors attributes to
cgi.FieldStorage.
|
2011-01-14 13:05:21 +00:00 |
Victor Stinner
|
1d87deb605
|
test_urlparse: add tests for encoding and errors arguments
|
2011-01-14 13:05:19 +00:00 |
Victor Stinner
|
ac71c54b88
|
Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl()
|
2011-01-14 12:52:12 +00:00 |
Eli Bendersky
|
489f392a0e
|
Issue #10902: Fix reference to run* methods
|
2011-01-14 08:25:03 +00:00 |
Eli Bendersky
|
07395914ca
|
Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844
|
2011-01-14 07:31:14 +00:00 |
Alexander Belopolsky
|
cc75a86123
|
Issue #9268: Documented -m pickletools usage.
Also added a source code link.
|
2011-01-13 21:58:44 +00:00 |
Raymond Hettinger
|
d958ea70bc
|
Issue 10899: Remove function type annotations from the stdlib
|
2011-01-13 19:08:04 +00:00 |
Raymond Hettinger
|
cbb80896ae
|
Issue #10899: Move function type annotations into docstrings.
Note, the docstrings (for the most part) were already very thorough
and included type information.
|
2011-01-13 18:15:51 +00:00 |
Georg Brandl
|
37a80dc7bc
|
Fix the example output of count().
|
2011-01-13 07:31:18 +00:00 |
Georg Brandl
|
ee31e31db3
|
Add semicolon for consistency.
|
2011-01-13 07:24:40 +00:00 |
Georg Brandl
|
4d73b570eb
|
More PEP 8: no space around "=" in argument lists.
|
2011-01-13 07:13:06 +00:00 |
Benjamin Peterson
|
547d4859b9
|
plug reference leak
|
2011-01-13 04:22:54 +00:00 |
Raymond Hettinger
|
00fa03900c
|
Issue 10899: Remove function type annotations from the stdlib
|
2011-01-13 02:52:26 +00:00 |
Raymond Hettinger
|
cd92f37582
|
Issue 10899: Remove function type annotations from the stdlib
|
2011-01-13 02:31:25 +00:00 |
Raymond Hettinger
|
3c94024c3e
|
Issue #10899: No function type annotations in the standard library.
Removed function type annotations from _pyio.py.
|
2011-01-12 23:39:31 +00:00 |
Antoine Pitrou
|
1e28513d25
|
Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError)
|
2011-01-12 22:02:45 +00:00 |
Antoine Pitrou
|
98c62bd1c8
|
A better message again
|
2011-01-12 21:58:39 +00:00 |
Antoine Pitrou
|
e0d3f8a654
|
More informative skip message in @bigaddrspace
|
2011-01-12 21:50:44 +00:00 |
Antoine Pitrou
|
9dd1171305
|
Fix @bigmemtest when no limit is given by the user (oops)
|
2011-01-12 21:40:20 +00:00 |
Antoine Pitrou
|
aca5fa7010
|
Make test skipping message nicer, and remove the rather useless "overhead" parameter.
|
2011-01-12 21:19:59 +00:00 |
Raymond Hettinger
|
219c300748
|
Remove the funky function annotation from numbers.py.
|
2011-01-12 20:52:39 +00:00 |
Antoine Pitrou
|
45545f79c9
|
Fix the expected memory use of utf-8 encoding. Also, release the
one reference to a huge object even when an exception is raised.
|
2011-01-12 20:46:37 +00:00 |
Raymond Hettinger
|
b3d89a4ee4
|
Remove function annotations that slipped into _abcoll.
These are reserved for third-party use.
|
2011-01-12 20:37:47 +00:00 |
Benjamin Peterson
|
23b628ed0b
|
use PyErr_SetString instead of PyErr_Format
|
2011-01-12 18:56:07 +00:00 |
Antoine Pitrou
|
318b8f35fe
|
Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch
by Ross Lagerwall.
|
2011-01-12 18:45:27 +00:00 |
Alexander Belopolsky
|
287d1fdd3f
|
Issue #10225: Fixed the simple mistakes in doctests.
|
2011-01-12 16:37:14 +00:00 |
Benjamin Peterson
|
477ba919c1
|
don't segfault on deleting __abstractmethods__ #10892
|
2011-01-12 15:34:01 +00:00 |
Benjamin Peterson
|
5e8dada491
|
oops, wrong class
|
2011-01-12 15:25:02 +00:00 |
Benjamin Peterson
|
1c02a44023
|
move this test to test_descr; it's not abc specific
|
2011-01-12 15:24:27 +00:00 |
Benjamin Peterson
|
1efb8dc871
|
fix weirdly ambigious sentence
|
2011-01-12 04:44:41 +00:00 |
Nick Coghlan
|
e993b10041
|
Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work)
|
2011-01-12 03:15:52 +00:00 |
Raymond Hettinger
|
b436b6cabc
|
Revert r87946. The virtues of readability and of examples that
can be cut and pasted are more important than having a doctests
on examples that already work.
|
2011-01-12 01:16:57 +00:00 |
Terry Reedy
|
fdf2925452
|
Issue #10225: Correct interactive Doc/howto/sorting.rst examples so doctest runs.
Based on part of A. Belopolsky's patch.
|
2011-01-11 23:05:50 +00:00 |
Raymond Hettinger
|
524359f9f7
|
Add comment.
|
2011-01-11 22:08:55 +00:00 |
Alexander Belopolsky
|
ef4a03fffe
|
Issue #5109: array.array constructor will now use fast code when
initial data is provided in an array object with correct type.
|
2011-01-11 21:44:00 +00:00 |
Raymond Hettinger
|
cf8a382c94
|
Update the email section
|
2011-01-11 21:20:20 +00:00 |
Raymond Hettinger
|
9767365318
|
Update the datetime and time section.
|
2011-01-11 21:13:26 +00:00 |
Raymond Hettinger
|
3a8ae5f9f4
|
Clean-up threading.Barrier example.
|
2011-01-11 20:51:45 +00:00 |
Raymond Hettinger
|
5cee47f321
|
Add entry for Barrier objects.
|
2011-01-11 19:59:46 +00:00 |
Eric Smith
|
a3e8f3d85f
|
Typo.
|
2011-01-11 10:24:34 +00:00 |
Nick Coghlan
|
90be5fb817
|
Issue 10556: test_zipimport_support implicitly imports too many modules (including _ssl) to safely clobber sys.modules after each test
|
2011-01-11 10:05:20 +00:00 |
Raymond Hettinger
|
6655d113e6
|
Add a todo.
|
2011-01-11 08:49:10 +00:00 |
Nick Coghlan
|
daba60bb92
|
developers.txt entry for Eli (at Brett's request)
|
2011-01-11 02:42:15 +00:00 |
Alexander Belopolsky
|
a6892418ad
|
This should fix mktime test on Windows
|
2011-01-11 02:22:16 +00:00 |
Alexander Belopolsky
|
31c5dd6b19
|
Make mktime test more robust.
|
2011-01-11 01:35:22 +00:00 |
Alexander Belopolsky
|
b7d40d1702
|
Issue #1726687: time.mktime() will now correctly compute value one
second before epoch. Original patch by Peter Wang, reported by Martin
Blais.
|
2011-01-11 01:21:25 +00:00 |
Victor Stinner
|
7234479580
|
Issue #9611: remove useless and dangerous explicit conversion to size_t
|
2011-01-11 00:04:12 +00:00 |