Barry Warsaw
08898499b2
get_payload(): Teach this about various uunencoded
...
Content-Transfer-Encodings
2003-03-11 04:33:30 +00:00
Barry Warsaw
3840b49d9c
test_get_decoded_uu_payload(): A new test for
...
Content-Transfer-Encoding: x-uuencode
2003-03-11 04:31:37 +00:00
Kurt B. Kaiser
9ac783d723
M PyShell.py
...
M rpc.py
Improve exception handing if peer process has terminated.
2003-03-10 20:42:24 +00:00
Kurt B. Kaiser
98b15ab980
A interruptmodule.c
...
M setup.py
Implements an interrupt extension module which allows a subthread
to raise an interrupt in the main thread.
2003-03-10 20:41:07 +00:00
Barry Warsaw
a2369928b5
specialsre, escapesre: In SF bug #663369 , Matthew Woodcraft points out
...
that backslashes must be escaped in character sets.
2003-03-10 19:20:18 +00:00
Barry Warsaw
a2e64702ca
test_escape_backslashes(): A test for SF bug #663369 by Matthew Woodcraft.
2003-03-10 19:18:34 +00:00
Barry Warsaw
59e98ae1c5
_bdecode(): Remove redundant check.
2003-03-10 17:36:04 +00:00
Barry Warsaw
513af770d7
Fix base class
2003-03-10 17:00:43 +00:00
Barry Warsaw
e1ff4bbce6
Use ndiffAssertEqual in a couple of places for better error reporting.
2003-03-10 16:59:34 +00:00
Barry Warsaw
21191d3e31
get_payload(): If we get a low-level binascii.Error when base64
...
decoding the payload, just return it as-is.
2003-03-10 16:13:14 +00:00
Barry Warsaw
3efb651ea3
test_broken_base64_payload(): Test for crash in low-level binascii
...
module when decoding a message with broken base64.
2003-03-10 16:09:51 +00:00
Martin v. Löwis
a57dccdcd4
Patch #700839 : Fix bugs in the plural handling.
2003-03-10 16:01:43 +00:00
Andrew M. Kuchling
a416341b30
[Patch #649762 ] Fix for asynchat endless loop
...
When the null string is used as the terminator, it used to be the same
as None, meaning "collect all the data". In the current code, however, it
falls into an endless loop; this change reverts to the old behavior.
2003-03-10 15:16:54 +00:00
Barry Warsaw
5b8c69f11e
_split_ascii() [method and function]: Don't join the lines just to
...
split them again. Simply return them as chunk lists.
_encode_chunks(): Don't add more folding whitespace than necessary.
2003-03-10 15:14:08 +00:00
Andrew M. Kuchling
faef74a2b0
Use isinstance() instead of type comparison
2003-03-10 15:12:00 +00:00
Barry Warsaw
796376338f
test_another_long_multiline_header(): Yet another formatting test.
2003-03-10 15:11:29 +00:00
Raymond Hettinger
1fdb633530
SF patch #691928 : Use datetime in _strptime
...
Contributed by Brett Cannon.
To prevent code duplication, I patched _strptime to use datetime's date
object to do Julian day, Gregorian, and day of the week calculations.
Patch also includes new regression tests to test results and the
calculation gets triggered.
Very minor comment changes and the contact email are also changed.
2003-03-09 07:44:42 +00:00
Raymond Hettinger
2c2d322884
SF patch #667730 : More DictMixin
...
* Adds missing pop() methods to weakref.py
* Expands test suite to broaden coverage of objects with
a mapping interface.
Contributed by Sebastien Keim.
2003-03-09 07:05:43 +00:00
Raymond Hettinger
42182ebaf6
SF 698520: Iterator for urllib.URLOpener
...
Contributed by Brett Cannon.
2003-03-09 05:33:33 +00:00
Martin v. Löwis
c49435c991
Skip the test if TESTFN_ENCODING is None. Fixes #699386 .
2003-03-08 10:25:31 +00:00
Barry Warsaw
33975eac3d
_split_ascii(): lstrip the individual lines in the ascii split lines,
...
since we'll be adding our own continuation whitespace later.
2003-03-07 23:24:34 +00:00
Barry Warsaw
28ffcef4e6
test_long_unbreakable_lines_with_continuation(): Another funky example
...
from Jason Mastaler :)
2003-03-07 23:23:04 +00:00
Barry Warsaw
8e1e7f5468
decode_rfc2231(): RFC 2231 allows leaving out both the charset and
...
language without including any single quotes.
2003-03-07 22:46:41 +00:00
Barry Warsaw
21fcc4e287
test_rfc2231_no_language_or_charset(): RFC 2231 allows leaving out
...
both the charset and language without including any single quotes.
2003-03-07 22:45:55 +00:00
Tim Peters
61cd0db3d2
Don't quote the path to Python unless the path contains an embedded space.
...
Quoting the path doesn't work on Win2K (cmd.exe) regardless, this is just
a hack to let the test pass again on Win2K (so long as Python isn't
installed in a path that does contain an embedded space). On Win2K it
looks like we'd also have to add a second pair of double quotes, around
the entire command line.
2003-03-07 21:10:21 +00:00
Tim Peters
669454e9dc
Whitespace normalization.
2003-03-07 17:30:48 +00:00
Barry Warsaw
bf7e241397
whitespace normalization
2003-03-07 15:58:51 +00:00
Tim Peters
eabafebfbc
This test relied on significant trailing whitespace in a string literal.
...
Evil.
2003-03-07 15:55:36 +00:00
Barry Warsaw
ce6bf59b2d
_write_headers(), _split_header(): All of the smarts for splitting
...
long header lines is now (properly) in the Header class. So we no
longer need _split_header() and we'll just defer to Header.encode()
when we have a plain string.
2003-03-07 15:43:17 +00:00
Barry Warsaw
9f3fcd9c23
More internal refinements of the ascii splitting algorithm.
...
_encode_chunks(): Pass maxlinelen in instead of always using
self._maxlinelen, so we can adjust for shorter initial lines.
Pass this value through to _max_append().
encode(): Weave maxlinelen through to the _encode_chunks() call.
_split_ascii(): When recursively splitting a line on spaces
(i.e. lower level syntactic split), don't append the whole returned
string. Instead, split it on linejoiners and extend the lines up to
the last line (for proper packing). Calculate the linelen based on
the last element in the this list.
2003-03-07 15:39:37 +00:00
Jack Jansen
c4d6bdd58a
Test_ioctl and test_tarfile are skipped on MacOS9.
2003-03-07 15:38:11 +00:00
Jack Jansen
1c8501e5b4
Filter out macfs warning.
2003-03-07 15:36:49 +00:00
Tim Peters
f9347782e0
Somebody must not have run the test before checking this in -- it had
...
a fatal tab/space inconsistency under -tt.
2003-03-07 15:36:41 +00:00
Barry Warsaw
82783e6f33
test_string_headerinst_eq(): Another Jason test :)
2003-03-07 15:35:47 +00:00
Jack Jansen
cfc4902b2a
Make tarfile raise ImportError on MacOS9. The pathname handling needs work, and I don't have time to fix it. I'll file a bug report.
2003-03-07 13:37:32 +00:00
Jack Jansen
149a8993b0
The filename fix of the previous checkin was complete bogus, the problem is elsewhere. Retracting.
2003-03-07 13:27:53 +00:00
Jack Jansen
c7fcc2d772
Two fixes to make this test pass on MacOS9:
...
- the test was sloppy about filenames: "0-REGTYPE-TEXT" was used where
the archive held "/0-REGTYPE-TEXT".
- tarfile extracts all files in binary mode, but the test expected to be able to
read and compare text files in text mode. Use universal text mode.
2003-03-07 12:50:45 +00:00
Jack Jansen
834eff6a4c
Test that os.utime and os.chmod actually exist before using them.
2003-03-07 12:47:06 +00:00
Guido van Rossum
6e31aad983
Broke down and made it work for Python 2.0 and up. (Older versions
...
would have required refraining from using string methods -- too
painful.)
Changed the -s option so that multiple -s options are cumulative.
2003-03-07 01:33:18 +00:00
Raymond Hettinger
a3e1e4cd79
SF patch #693753 : fix for bug 639806: default for dict.pop
...
(contributed by Michael Stone.)
2003-03-06 23:54:28 +00:00
Tim Peters
2b4821347f
Repaired a misleading comment Barry inherited from me.
2003-03-06 23:41:58 +00:00
Barry Warsaw
bd836dfba3
_split_ascii(): In the clause where curlen + partlen > maxlen, if the
...
part itself is longer than maxlen, and we aren't already splitting on
whitespace, then we recursively split the part on whitespace and
append that to the this list.
2003-03-06 20:33:04 +00:00
Barry Warsaw
f0d3585669
test_long_received_header(): Another test case for folding long
...
Received headers (first on semis then on whitespace), given by Jason
Mastaler.
2003-03-06 20:31:02 +00:00
Raymond Hettinger
4922768d02
Reverted the previous change to read() and readline().
...
Kevin Jacobs found that the code simplification did not
exactly match the semantics of the original. Regression
test cases were requested.
2003-03-06 16:31:48 +00:00
Guido van Rossum
5573541b6f
Add a note explaining why you shouldn't try to compute mean and
...
standard deviation. Also add an XXX comment wondering if we should
refrain from using itertools.repeat().
2003-03-06 16:11:17 +00:00
Barry Warsaw
c79ffb022f
test_whitespace_eater_unicode(): Test of the last outstanding bug in
...
SF # 640110.
2003-03-06 16:11:14 +00:00
Barry Warsaw
4848805341
__unicode__(): When converting to a unicode string, we need to
...
preserve spaces in the encoded/unencoded word boundaries. RFC 2047 is
ambiguous here, but most people expect the space to be preserved.
Really closes SF bug # 640110.
2003-03-06 16:10:30 +00:00
Guido van Rossum
e05dcce686
Simpler way to write reindent(), suggested by Raymond H.
2003-03-06 13:09:09 +00:00
Barry Warsaw
28ffcb6f84
test_rfc2047_multiline(): Test case for SF bug #640110 .
2003-03-06 06:38:29 +00:00
Barry Warsaw
671c3e6373
decode_header(): Typo when appending an unencoded chunk to the
...
previous unencoded chunk (e.g. when they appear on separate lines).
Closes the 2nd bug in SF #640110 (the first one's already been
fixed).
2003-03-06 06:37:42 +00:00