- 16 Aug, 2007 9 commits
-
-
Guido van Rossum authored
-
Walter Dörwald authored
ut-32-be). On narrow builds the codecs combine surrogate pairs in the unicode object into one codepoint on encoding and create surrogate pairs for codepoints outside the BMP on decoding. Lone surrogates are passed through unchanged in all cases. Backport to the trunk will follow.
-
Guido van Rossum authored
-
Jeremy Hylton authored
Refactor the urllib open_http() and open_https() to use the same internal logic. The only difference between the two is the call to constructor an HTTPConnection object.
-
Walter Dörwald authored
-
Skip Montanaro authored
-
Georg Brandl authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 15 Aug, 2007 6 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
George Yoshida authored
-
Martin v. Löwis authored
-
Guido van Rossum authored
Change various socket APIs to use bytes or str instead str8.
-
- 14 Aug, 2007 9 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Collin Winter authored
-
Collin Winter authored
-
Jeremy Hylton authored
The two clients in the std library have been updated to use the newer interface. A couple of minor changes to the httplib tests were needed. Also, reformat some long lines in the httplib tests.
-
Jeremy Hylton authored
Note that it's hard to test xmlrpclib, because the server it attempts to connect to doesn't seem to support the expected interfaces. Many of the links via xmlrpc.com are dead, so I couldn't find another server to use for tests.
-
Guido van Rossum authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 13 Aug, 2007 14 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
Even if it isn't, it shouldn't be changed based on the locale setting IMO. (Incidentally, this makes test_csv.py pass again on my box.)
-
Guido van Rossum authored
- fix "h[sbseek] == b'\1'" and "ratecode = ord(h[sbseek+4])" in test_voc() - avoid division by zero - use startswith method: replace h[:2] == b'BM' by h.startswith(b'BM') - use aifc.open() instead of old aifc.openfp() - use ord(b'P') instead of ord('P')
-
Guido van Rossum authored
-
Martin v. Löwis authored
-
Hye-Shik Chang authored
-
Hye-Shik Chang authored
in utf-8.
-
Lars Gustäbel authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 12 Aug, 2007 2 commits
-
-
Neal Norwitz authored
Use bit fields for flags to reduce memory usage. Return booleans where they are documented. Although a boolean for seekable seems a bit odd when it can be unknown. Add a comment about this.
-
Neal Norwitz authored
-