mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Get rid of relative imports in all unittests. Now anything that
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
This commit is contained in:
parent
62b1ab1b31
commit
04f357cffe
194 changed files with 195 additions and 1384 deletions
|
@ -32,7 +32,7 @@ from email import base64MIME
|
||||||
from email import quopriMIME
|
from email import quopriMIME
|
||||||
|
|
||||||
from test.test_support import findfile, run_unittest
|
from test.test_support import findfile, run_unittest
|
||||||
from test.test_support import __file__ as test_support_file
|
from email.test import __file__ as landmark
|
||||||
|
|
||||||
|
|
||||||
NL = '\n'
|
NL = '\n'
|
||||||
|
@ -45,7 +45,7 @@ warnings.filterwarnings('ignore', '', DeprecationWarning, __name__)
|
||||||
|
|
||||||
|
|
||||||
def openfile(filename):
|
def openfile(filename):
|
||||||
path = os.path.join(os.path.dirname(test_support_file), 'data', filename)
|
path = os.path.join(os.path.dirname(landmark), 'data', filename)
|
||||||
return open(path)
|
return open(path)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# email package unit tests for (optional) Asian codecs
|
# email package unit tests for (optional) Asian codecs
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import TestSkipped, run_unittest
|
from test.test_support import TestSkipped, run_unittest
|
||||||
|
|
||||||
from email.test.test_email import TestEmailBase
|
from email.test.test_email import TestEmailBase
|
||||||
from email.Charset import Charset
|
from email.Charset import Charset
|
||||||
|
|
|
@ -52,7 +52,7 @@ All PyUnit-based tests in the Python test suite use boilerplate that
|
||||||
looks like this:
|
looks like this:
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
class MyTestCase1(unittest.TestCase):
|
class MyTestCase1(unittest.TestCase):
|
||||||
# define test methods here...
|
# define test methods here...
|
||||||
|
@ -248,7 +248,7 @@ these mostly apply only to the "classic" tests; unittest- and doctest-
|
||||||
based tests should follow the conventions natural to those frameworks):
|
based tests should follow the conventions natural to those frameworks):
|
||||||
|
|
||||||
* If your test case detects a failure, raise TestFailed (found in
|
* If your test case detects a failure, raise TestFailed (found in
|
||||||
test_support).
|
test.test_support).
|
||||||
|
|
||||||
* Import everything you'll need as early as possible.
|
* Import everything you'll need as early as possible.
|
||||||
|
|
||||||
|
@ -275,8 +275,16 @@ based tests should follow the conventions natural to those frameworks):
|
||||||
|
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
|
|
||||||
There is a test_support module you can import from your test case. It
|
There is a test_support module in the test package you can import from
|
||||||
provides the following useful objects:
|
your test case. Import this module using either
|
||||||
|
|
||||||
|
import test.test_support
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
test_support provides the following useful objects:
|
||||||
|
|
||||||
* TestFailed - raise this exception when your regression test detects a
|
* TestFailed - raise this exception when your regression test detects a
|
||||||
failure.
|
failure.
|
||||||
|
@ -318,28 +326,6 @@ provides the following useful objects:
|
||||||
numbers when you expect them to only be approximately equal withing a
|
numbers when you expect them to only be approximately equal withing a
|
||||||
fuzz factor (test_support.FUZZ, which defaults to 1e-6).
|
fuzz factor (test_support.FUZZ, which defaults to 1e-6).
|
||||||
|
|
||||||
NOTE: Always import something from test_support like so:
|
|
||||||
|
|
||||||
from test_support import verbose
|
|
||||||
|
|
||||||
or like so:
|
|
||||||
|
|
||||||
import test_support
|
|
||||||
... use test_support.verbose in the code ...
|
|
||||||
|
|
||||||
Never import anything from test_support like this:
|
|
||||||
|
|
||||||
from test.test_support import verbose
|
|
||||||
|
|
||||||
"test" is a package already, so can refer to modules it contains without
|
|
||||||
"test." qualification. If you do an explicit "test.xxx" qualification, that
|
|
||||||
can fool Python into believing test.xxx is a module distinct from the xxx
|
|
||||||
in the current package, and you can end up importing two distinct copies of
|
|
||||||
xxx. This is especially bad if xxx=test_support, as regrtest.py can (and
|
|
||||||
routinely does) overwrite its "verbose" and "use_large_resources"
|
|
||||||
attributes: if you get a second copy of test_support loaded, it may not
|
|
||||||
have the same values for those as regrtest intended.
|
|
||||||
|
|
||||||
|
|
||||||
Python and C statement coverage results are currently available at
|
Python and C statement coverage results are currently available at
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 954 B |
|
@ -1,19 +0,0 @@
|
||||||
Return-Path: <bbb@zzz.org>
|
|
||||||
Delivered-To: bbb@zzz.org
|
|
||||||
Received: by mail.zzz.org (Postfix, from userid 889)
|
|
||||||
id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT)
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15090.61304.110929.45684@aaa.zzz.org>
|
|
||||||
From: bbb@ddd.com (John X. Doe)
|
|
||||||
To: bbb@zzz.org
|
|
||||||
Subject: This is a test message
|
|
||||||
Date: Fri, 4 May 2001 14:05:44 -0400
|
|
||||||
|
|
||||||
|
|
||||||
Hi,
|
|
||||||
|
|
||||||
Do you like this message?
|
|
||||||
|
|
||||||
-Me
|
|
|
@ -1,135 +0,0 @@
|
||||||
MIME-version: 1.0
|
|
||||||
From: ppp-request@zzz.org
|
|
||||||
Sender: ppp-admin@zzz.org
|
|
||||||
To: ppp@zzz.org
|
|
||||||
Subject: Ppp digest, Vol 1 #2 - 5 msgs
|
|
||||||
Date: Fri, 20 Apr 2001 20:18:00 -0400 (EDT)
|
|
||||||
X-Mailer: Mailman v2.0.4
|
|
||||||
X-Mailman-Version: 2.0.4
|
|
||||||
Content-Type: multipart/mixed; boundary="192.168.1.2.889.32614.987812255.500.21814"
|
|
||||||
|
|
||||||
--192.168.1.2.889.32614.987812255.500.21814
|
|
||||||
Content-type: text/plain; charset=us-ascii
|
|
||||||
Content-description: Masthead (Ppp digest, Vol 1 #2)
|
|
||||||
|
|
||||||
Send Ppp mailing list submissions to
|
|
||||||
ppp@zzz.org
|
|
||||||
|
|
||||||
To subscribe or unsubscribe via the World Wide Web, visit
|
|
||||||
http://www.zzz.org/mailman/listinfo/ppp
|
|
||||||
or, via email, send a message with subject or body 'help' to
|
|
||||||
ppp-request@zzz.org
|
|
||||||
|
|
||||||
You can reach the person managing the list at
|
|
||||||
ppp-admin@zzz.org
|
|
||||||
|
|
||||||
When replying, please edit your Subject line so it is more specific
|
|
||||||
than "Re: Contents of Ppp digest..."
|
|
||||||
|
|
||||||
|
|
||||||
--192.168.1.2.889.32614.987812255.500.21814
|
|
||||||
Content-type: text/plain; charset=us-ascii
|
|
||||||
Content-description: Today's Topics (5 msgs)
|
|
||||||
|
|
||||||
Today's Topics:
|
|
||||||
|
|
||||||
1. testing #1 (Barry A. Warsaw)
|
|
||||||
2. testing #2 (Barry A. Warsaw)
|
|
||||||
3. testing #3 (Barry A. Warsaw)
|
|
||||||
4. testing #4 (Barry A. Warsaw)
|
|
||||||
5. testing #5 (Barry A. Warsaw)
|
|
||||||
|
|
||||||
--192.168.1.2.889.32614.987812255.500.21814
|
|
||||||
Content-Type: multipart/digest; boundary="__--__--"
|
|
||||||
|
|
||||||
--__--__--
|
|
||||||
|
|
||||||
Message: 1
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Date: Fri, 20 Apr 2001 20:16:13 -0400
|
|
||||||
To: ppp@zzz.org
|
|
||||||
From: barry@digicool.com (Barry A. Warsaw)
|
|
||||||
Subject: [Ppp] testing #1
|
|
||||||
Precedence: bulk
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
--__--__--
|
|
||||||
|
|
||||||
Message: 2
|
|
||||||
Date: Fri, 20 Apr 2001 20:16:21 -0400
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
To: ppp@zzz.org
|
|
||||||
From: barry@digicool.com (Barry A. Warsaw)
|
|
||||||
Precedence: bulk
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
--__--__--
|
|
||||||
|
|
||||||
Message: 3
|
|
||||||
Date: Fri, 20 Apr 2001 20:16:25 -0400
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
To: ppp@zzz.org
|
|
||||||
From: barry@digicool.com (Barry A. Warsaw)
|
|
||||||
Subject: [Ppp] testing #3
|
|
||||||
Precedence: bulk
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
--__--__--
|
|
||||||
|
|
||||||
Message: 4
|
|
||||||
Date: Fri, 20 Apr 2001 20:16:28 -0400
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
To: ppp@zzz.org
|
|
||||||
From: barry@digicool.com (Barry A. Warsaw)
|
|
||||||
Subject: [Ppp] testing #4
|
|
||||||
Precedence: bulk
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
--__--__--
|
|
||||||
|
|
||||||
Message: 5
|
|
||||||
Date: Fri, 20 Apr 2001 20:16:32 -0400
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
To: ppp@zzz.org
|
|
||||||
From: barry@digicool.com (Barry A. Warsaw)
|
|
||||||
Subject: [Ppp] testing #5
|
|
||||||
Precedence: bulk
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--__--__----
|
|
||||||
--192.168.1.2.889.32614.987812255.500.21814
|
|
||||||
Content-type: text/plain; charset=us-ascii
|
|
||||||
Content-description: Digest Footer
|
|
||||||
|
|
||||||
_______________________________________________
|
|
||||||
Ppp mailing list
|
|
||||||
Ppp@zzz.org
|
|
||||||
http://www.zzz.org/mailman/listinfo/ppp
|
|
||||||
|
|
||||||
|
|
||||||
--192.168.1.2.889.32614.987812255.500.21814--
|
|
||||||
|
|
||||||
End of Ppp Digest
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
Return-Path: <bbb@zzz.org>
|
|
||||||
Delivered-To: bbb@zzz.org
|
|
||||||
Received: by mail.zzz.org (Postfix, from userid 889)
|
|
||||||
id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT)
|
|
||||||
Message-ID: <15090.61304.110929.45684@aaa.zzz.org>
|
|
||||||
From: bbb@ddd.com (John X. Doe)
|
|
||||||
To: bbb@zzz.org
|
|
||||||
Subject: This is a test message
|
|
||||||
Date: Fri, 4 May 2001 14:05:44 -0400
|
|
||||||
|
|
||||||
|
|
||||||
Hi,
|
|
||||||
|
|
||||||
Do you like this message?
|
|
||||||
|
|
||||||
-Me
|
|
|
@ -1,37 +0,0 @@
|
||||||
Return-Path: <barry@python.org>
|
|
||||||
Delivered-To: barry@python.org
|
|
||||||
Received: by mail.python.org (Postfix, from userid 889)
|
|
||||||
id C2BF0D37C6; Tue, 11 Sep 2001 00:05:05 -0400 (EDT)
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/mixed; boundary="h90VIIIKmx"
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15261.36209.358846.118674@anthem.python.org>
|
|
||||||
From: barry@python.org (Barry A. Warsaw)
|
|
||||||
To: barry@python.org
|
|
||||||
Subject: a simple multipart
|
|
||||||
Date: Tue, 11 Sep 2001 00:05:05 -0400
|
|
||||||
X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid
|
|
||||||
X-Attribution: BAW
|
|
||||||
X-Oblique-Strategy: Make a door into a window
|
|
||||||
|
|
||||||
|
|
||||||
--h90VIIIKmx
|
|
||||||
Content-Type: text/plain
|
|
||||||
Content-Disposition: inline;
|
|
||||||
filename="msg.txt"
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
|
|
||||||
a simple kind of mirror
|
|
||||||
to reflect upon our own
|
|
||||||
|
|
||||||
--h90VIIIKmx
|
|
||||||
Content-Type: text/plain
|
|
||||||
Content-Disposition: inline;
|
|
||||||
filename="msg.txt"
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
|
|
||||||
a simple kind of mirror
|
|
||||||
to reflect upon our own
|
|
||||||
|
|
||||||
--h90VIIIKmx--
|
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
From: foo
|
|
||||||
Subject: bar
|
|
||||||
To: baz
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/report; report-type=delivery-status;
|
|
||||||
boundary="D1690A7AC1.996856090/mail.example.com"
|
|
||||||
Message-Id: <20010803162810.0CA8AA7ACC@mail.example.com>
|
|
||||||
|
|
||||||
This is a MIME-encapsulated message.
|
|
||||||
|
|
||||||
--D1690A7AC1.996856090/mail.example.com
|
|
||||||
Content-Type: text/plain
|
|
||||||
|
|
||||||
Yadda yadda yadda
|
|
||||||
|
|
||||||
--D1690A7AC1.996856090/mail.example.com
|
|
||||||
|
|
||||||
Yadda yadda yadda
|
|
||||||
|
|
||||||
--D1690A7AC1.996856090/mail.example.com
|
|
||||||
Content-Type: message/rfc822
|
|
||||||
|
|
||||||
From: nobody@python.org
|
|
||||||
|
|
||||||
Yadda yadda yadda
|
|
||||||
|
|
||||||
--D1690A7AC1.996856090/mail.example.com--
|
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
Return-Path: <barry@python.org>
|
|
||||||
Delivered-To: barry@python.org
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: message/rfc822
|
|
||||||
Content-Description: forwarded message
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15265.9482.641338.555352@python.org>
|
|
||||||
From: barry@zope.com (Barry A. Warsaw)
|
|
||||||
Sender: barry@python.org
|
|
||||||
To: barry@python.org
|
|
||||||
Subject: forwarded message from Barry A. Warsaw
|
|
||||||
Date: Thu, 13 Sep 2001 17:28:42 -0400
|
|
||||||
X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid
|
|
||||||
X-Attribution: BAW
|
|
||||||
X-Oblique-Strategy: Be dirty
|
|
||||||
X-Url: http://barry.wooz.org
|
|
||||||
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Return-Path: <barry@python.org>
|
|
||||||
Delivered-To: barry@python.org
|
|
||||||
Message-ID: <15265.9468.713530.98441@python.org>
|
|
||||||
From: barry@zope.com (Barry A. Warsaw)
|
|
||||||
Sender: barry@python.org
|
|
||||||
To: barry@python.org
|
|
||||||
Subject: testing
|
|
||||||
Date: Thu, 13 Sep 2001 17:28:28 -0400
|
|
||||||
X-Mailer: VM 6.95 under 21.4 (patch 4) "Artificial Intelligence" XEmacs Lucid
|
|
||||||
X-Attribution: BAW
|
|
||||||
X-Oblique-Strategy: Spectrum analysis
|
|
||||||
X-Url: http://barry.wooz.org
|
|
||||||
|
|
||||||
|
|
|
@ -1,83 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry <barry@digicool.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Here is your dingus fish
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
Hi there,
|
|
||||||
|
|
||||||
This is the dingus fish.
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: image/gif; name="dingusfish.gif"
|
|
||||||
Content-Transfer-Encoding: base64
|
|
||||||
content-disposition: attachment; filename="dingusfish.gif"
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,24 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry Warsaw <barry@zope.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Lyrics
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/html; charset="iso-8859-1"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="iso-8859-2"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="koi8-r"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,24 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry Warsaw <barry@zope.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Lyrics
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/html; charset="iso-8859-1"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="koi8-r"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,32 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry Warsaw <barry@zope.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Lyrics
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
|
|
||||||
This is a 7bit encoded message.
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/html; charset="iso-8859-1"
|
|
||||||
Content-Transfer-Encoding: Quoted-Printable
|
|
||||||
|
|
||||||
=A1This is a Quoted Printable encoded message!
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="iso-8859-1"
|
|
||||||
Content-Transfer-Encoding: Base64
|
|
||||||
|
|
||||||
VGhpcyBpcyBhIEJhc2U2NCBlbmNvZGVkIG1lc3NhZ2Uu
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="iso-8859-1"
|
|
||||||
|
|
||||||
This has no Content-Transfer-Encoding: header.
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,7 +0,0 @@
|
||||||
Content-Type: message/rfc822
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Subject: The enclosing message
|
|
||||||
|
|
||||||
Subject: An enclosed message
|
|
||||||
|
|
||||||
Here is the body of the message.
|
|
|
@ -1,36 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry Warsaw <barry@zope.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Lyrics
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/html; charset="iso-8859-1"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: multipart/mixed; boundary="ANOTHER"
|
|
||||||
|
|
||||||
--ANOTHER
|
|
||||||
Content-Type: text/plain; charset="iso-8859-2"
|
|
||||||
|
|
||||||
|
|
||||||
--ANOTHER
|
|
||||||
Content-Type: text/plain; charset="iso-8859-3"
|
|
||||||
|
|
||||||
--ANOTHER--
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="koi8-r"
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,94 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry <barry@digicool.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Here is your dingus fish
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="OUTER"
|
|
||||||
|
|
||||||
--OUTER
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
A text/plain part
|
|
||||||
|
|
||||||
--OUTER
|
|
||||||
Content-Type: multipart/mixed; boundary=BOUNDARY
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
|
|
||||||
Hi there,
|
|
||||||
|
|
||||||
This is the dingus fish.
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: image/gif; name="dingusfish.gif"
|
|
||||||
Content-Transfer-Encoding: base64
|
|
||||||
content-disposition: attachment; filename="dingusfish.gif"
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
||||||
|
|
||||||
--OUTER--
|
|
|
@ -1,23 +0,0 @@
|
||||||
Return-Path: <bbb@zzz.org>
|
|
||||||
Delivered-To: bbb@zzz.org
|
|
||||||
Received: by mail.zzz.org (Postfix, from userid 889)
|
|
||||||
id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT)
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15090.61304.110929.45684@aaa.zzz.org>
|
|
||||||
From: bbb@ddd.com (John X. Doe)
|
|
||||||
To: bbb@zzz.org
|
|
||||||
Subject: This is a test message
|
|
||||||
Date: Fri, 4 May 2001 14:05:44 -0400
|
|
||||||
|
|
||||||
|
|
||||||
Hi,
|
|
||||||
|
|
||||||
I'm sorry but I'm using a drainbread ISP, which although big and
|
|
||||||
wealthy can't seem to generate standard compliant email. :(
|
|
||||||
|
|
||||||
This message has a Content-Type: header with no subtype. I hope you
|
|
||||||
can still read it.
|
|
||||||
|
|
||||||
-Me
|
|
|
@ -1,52 +0,0 @@
|
||||||
Return-Path: <xx@xx.dk>
|
|
||||||
Received: from fepD.post.tele.dk (195.41.46.149) by mail.groupcare.dk (LSMTP for Windows NT v1.1b) with SMTP id <0.0014F8A2@mail.groupcare.dk>; Mon, 30 Apr 2001 12:17:50 +0200
|
|
||||||
User-Agent: Microsoft-Outlook-Express-Macintosh-Edition/5.02.2106
|
|
||||||
Subject: XX
|
|
||||||
From: xx@xx.dk
|
|
||||||
To: XX
|
|
||||||
Message-ID: <xxxx>
|
|
||||||
Mime-version: 1.0
|
|
||||||
Content-type: multipart/mixed;
|
|
||||||
boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
|
|
||||||
|
|
||||||
> Denne meddelelse er i MIME-format. Da dit postl¾sningsprogram ikke forstŒr dette format, kan del af eller hele meddelelsen v¾re ul¾selig.
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part
|
|
||||||
Content-type: multipart/alternative;
|
|
||||||
boundary="MS_Mac_OE_3071477847_720252_MIME_Part"
|
|
||||||
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part
|
|
||||||
Content-type: text/plain; charset="ISO-8859-1"
|
|
||||||
Content-transfer-encoding: quoted-printable
|
|
||||||
|
|
||||||
Some removed test.
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part
|
|
||||||
Content-type: text/html; charset="ISO-8859-1"
|
|
||||||
Content-transfer-encoding: quoted-printable
|
|
||||||
|
|
||||||
<HTML>
|
|
||||||
<HEAD>
|
|
||||||
<TITLE>Some removed HTML</TITLE>
|
|
||||||
</HEAD>
|
|
||||||
<BODY>
|
|
||||||
Some removed text.
|
|
||||||
</BODY>
|
|
||||||
</HTML>
|
|
||||||
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part--
|
|
||||||
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part
|
|
||||||
Content-type: image/gif; name="xx.gif";
|
|
||||||
x-mac-creator="6F676C65";
|
|
||||||
x-mac-type="47494666"
|
|
||||||
Content-disposition: attachment
|
|
||||||
Content-transfer-encoding: base64
|
|
||||||
|
|
||||||
Some removed base64 encoded chars.
|
|
||||||
|
|
||||||
--MS_Mac_OE_3071477847_720252_MIME_Part--
|
|
||||||
|
|
|
@ -1,123 +0,0 @@
|
||||||
Return-Path: <>
|
|
||||||
Delivered-To: scr-admin@socal-raves.org
|
|
||||||
Received: from cougar.noc.ucla.edu (cougar.noc.ucla.edu [169.232.10.18])
|
|
||||||
by babylon.socal-raves.org (Postfix) with ESMTP id CCC2C51B84
|
|
||||||
for <scr-admin@socal-raves.org>; Sun, 23 Sep 2001 20:13:54 -0700 (PDT)
|
|
||||||
Received: from sims-ms-daemon by cougar.noc.ucla.edu
|
|
||||||
(Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10)
|
|
||||||
id <0GK500B01D0B8Y@cougar.noc.ucla.edu> for scr-admin@socal-raves.org; Sun,
|
|
||||||
23 Sep 2001 20:14:35 -0700 (PDT)
|
|
||||||
Received: from cougar.noc.ucla.edu
|
|
||||||
(Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10)
|
|
||||||
id <0GK500B01D0B8X@cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT)
|
|
||||||
Date: Sun, 23 Sep 2001 20:14:35 -0700 (PDT)
|
|
||||||
From: Internet Mail Delivery <postmaster@ucla.edu>
|
|
||||||
Subject: Delivery Notification: Delivery has failed
|
|
||||||
To: scr-admin@socal-raves.org
|
|
||||||
Message-id: <0GK500B04D0B8X@cougar.noc.ucla.edu>
|
|
||||||
MIME-version: 1.0
|
|
||||||
Sender: scr-owner@socal-raves.org
|
|
||||||
Errors-To: scr-owner@socal-raves.org
|
|
||||||
X-BeenThere: scr@socal-raves.org
|
|
||||||
X-Mailman-Version: 2.1a3
|
|
||||||
Precedence: bulk
|
|
||||||
List-Help: <mailto:scr-request@socal-raves.org?subject=help>
|
|
||||||
List-Post: <mailto:scr@socal-raves.org>
|
|
||||||
List-Subscribe: <http://socal-raves.org/mailman/listinfo/scr>,
|
|
||||||
<mailto:scr-request@socal-raves.org?subject=subscribe>
|
|
||||||
List-Id: SoCal-Raves <scr.socal-raves.org>
|
|
||||||
List-Unsubscribe: <http://socal-raves.org/mailman/listinfo/scr>,
|
|
||||||
<mailto:scr-request@socal-raves.org?subject=unsubscribe>
|
|
||||||
List-Archive: <http://socal-raves.org/mailman/private/scr/>
|
|
||||||
Content-Type: multipart/report; boundary="Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)"
|
|
||||||
|
|
||||||
|
|
||||||
--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)
|
|
||||||
Content-type: text/plain; charset=ISO-8859-1
|
|
||||||
|
|
||||||
This report relates to a message you sent with the following header fields:
|
|
||||||
|
|
||||||
Message-id: <002001c144a6$8752e060$56104586@oxy.edu>
|
|
||||||
Date: Sun, 23 Sep 2001 20:10:55 -0700
|
|
||||||
From: "Ian T. Henry" <henryi@oxy.edu>
|
|
||||||
To: SoCal Raves <scr@socal-raves.org>
|
|
||||||
Subject: [scr] yeah for Ians!!
|
|
||||||
|
|
||||||
Your message cannot be delivered to the following recipients:
|
|
||||||
|
|
||||||
Recipient address: jangel1@cougar.noc.ucla.edu
|
|
||||||
Reason: recipient reached disk quota
|
|
||||||
|
|
||||||
|
|
||||||
--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)
|
|
||||||
Content-type: message/DELIVERY-STATUS
|
|
||||||
|
|
||||||
Original-envelope-id: 0GK500B4HD0888@cougar.noc.ucla.edu
|
|
||||||
Reporting-MTA: dns; cougar.noc.ucla.edu
|
|
||||||
|
|
||||||
Action: failed
|
|
||||||
Status: 5.0.0 (recipient reached disk quota)
|
|
||||||
Original-recipient: rfc822;jangel1@cougar.noc.ucla.edu
|
|
||||||
Final-recipient: rfc822;jangel1@cougar.noc.ucla.edu
|
|
||||||
|
|
||||||
--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)
|
|
||||||
Content-type: MESSAGE/RFC822
|
|
||||||
|
|
||||||
Return-path: scr-admin@socal-raves.org
|
|
||||||
Received: from sims-ms-daemon by cougar.noc.ucla.edu
|
|
||||||
(Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10)
|
|
||||||
id <0GK500B01D0B8X@cougar.noc.ucla.edu>; Sun, 23 Sep 2001 20:14:35 -0700 (PDT)
|
|
||||||
Received: from panther.noc.ucla.edu by cougar.noc.ucla.edu
|
|
||||||
(Sun Internet Mail Server sims.3.5.2000.03.23.18.03.p10)
|
|
||||||
with ESMTP id <0GK500B4GD0888@cougar.noc.ucla.edu> for jangel1@sims-ms-daemon;
|
|
||||||
Sun, 23 Sep 2001 20:14:33 -0700 (PDT)
|
|
||||||
Received: from babylon.socal-raves.org
|
|
||||||
(ip-209-85-222-117.dreamhost.com [209.85.222.117])
|
|
||||||
by panther.noc.ucla.edu (8.9.1a/8.9.1) with ESMTP id UAA09793 for
|
|
||||||
<jangel1@ucla.edu>; Sun, 23 Sep 2001 20:14:32 -0700 (PDT)
|
|
||||||
Received: from babylon (localhost [127.0.0.1]) by babylon.socal-raves.org
|
|
||||||
(Postfix) with ESMTP id D3B2951B70; Sun, 23 Sep 2001 20:13:47 -0700 (PDT)
|
|
||||||
Received: by babylon.socal-raves.org (Postfix, from userid 60001)
|
|
||||||
id A611F51B82; Sun, 23 Sep 2001 20:13:46 -0700 (PDT)
|
|
||||||
Received: from tiger.cc.oxy.edu (tiger.cc.oxy.edu [134.69.3.112])
|
|
||||||
by babylon.socal-raves.org (Postfix) with ESMTP id ADA7351B70 for
|
|
||||||
<scr@socal-raves.org>; Sun, 23 Sep 2001 20:13:44 -0700 (PDT)
|
|
||||||
Received: from ent (n16h86.dhcp.oxy.edu [134.69.16.86])
|
|
||||||
by tiger.cc.oxy.edu (8.8.8/8.8.8) with SMTP id UAA08100 for
|
|
||||||
<scr@socal-raves.org>; Sun, 23 Sep 2001 20:14:24 -0700 (PDT)
|
|
||||||
Date: Sun, 23 Sep 2001 20:10:55 -0700
|
|
||||||
From: "Ian T. Henry" <henryi@oxy.edu>
|
|
||||||
Subject: [scr] yeah for Ians!!
|
|
||||||
Sender: scr-admin@socal-raves.org
|
|
||||||
To: SoCal Raves <scr@socal-raves.org>
|
|
||||||
Errors-to: scr-admin@socal-raves.org
|
|
||||||
Message-id: <002001c144a6$8752e060$56104586@oxy.edu>
|
|
||||||
MIME-version: 1.0
|
|
||||||
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
|
|
||||||
Content-type: text/plain; charset=us-ascii
|
|
||||||
Precedence: bulk
|
|
||||||
Delivered-to: scr-post@babylon.socal-raves.org
|
|
||||||
Delivered-to: scr@socal-raves.org
|
|
||||||
X-Converted-To-Plain-Text: from multipart/alternative by demime 0.98e
|
|
||||||
X-Converted-To-Plain-Text: Alternative section used was text/plain
|
|
||||||
X-BeenThere: scr@socal-raves.org
|
|
||||||
X-Mailman-Version: 2.1a3
|
|
||||||
List-Help: <mailto:scr-request@socal-raves.org?subject=help>
|
|
||||||
List-Post: <mailto:scr@socal-raves.org>
|
|
||||||
List-Subscribe: <http://socal-raves.org/mailman/listinfo/scr>,
|
|
||||||
<mailto:scr-request@socal-raves.org?subject=subscribe>
|
|
||||||
List-Id: SoCal-Raves <scr.socal-raves.org>
|
|
||||||
List-Unsubscribe: <http://socal-raves.org/mailman/listinfo/scr>,
|
|
||||||
<mailto:scr-request@socal-raves.org?subject=unsubscribe>
|
|
||||||
List-Archive: <http://socal-raves.org/mailman/private/scr/>
|
|
||||||
|
|
||||||
I always love to find more Ian's that are over 3 years old!!
|
|
||||||
|
|
||||||
Ian
|
|
||||||
_______________________________________________
|
|
||||||
For event info, list questions, or to unsubscribe, see http://www.socal-raves.org/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--Boundary_(ID_PGS2F2a+z+/jL7hupKgRhA)--
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
MIME-Version: 1.0
|
|
||||||
From: Barry <barry@digicool.com>
|
|
||||||
To: Dingus Lovers <cravindogs@cravindogs.com>
|
|
||||||
Subject: Here is your dingus fish
|
|
||||||
Date: Fri, 20 Apr 2001 19:35:02 -0400
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
Hi there,
|
|
||||||
|
|
||||||
This is the dingus fish.
|
|
||||||
|
|
||||||
[Non-text (image/gif) part of message omitted, filename dingusfish.gif]
|
|
|
@ -1,6 +0,0 @@
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
|
|
||||||
spooge="yummy"; hippos="gargantuan"; marshmallows="gooey"
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
Send Ppp mailing list submissions to
|
|
||||||
ppp@zzz.org
|
|
||||||
|
|
||||||
To subscribe or unsubscribe via the World Wide Web, visit
|
|
||||||
http://www.zzz.org/mailman/listinfo/ppp
|
|
||||||
or, via email, send a message with subject or body 'help' to
|
|
||||||
ppp-request@zzz.org
|
|
||||||
|
|
||||||
You can reach the person managing the list at
|
|
||||||
ppp-admin@zzz.org
|
|
||||||
|
|
||||||
When replying, please edit your Subject line so it is more specific
|
|
||||||
than "Re: Contents of Ppp digest..."
|
|
||||||
|
|
||||||
Today's Topics:
|
|
||||||
|
|
||||||
1. testing #1 (Barry A. Warsaw)
|
|
||||||
2. testing #2 (Barry A. Warsaw)
|
|
||||||
3. testing #3 (Barry A. Warsaw)
|
|
||||||
4. testing #4 (Barry A. Warsaw)
|
|
||||||
5. testing #5 (Barry A. Warsaw)
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
hello
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_______________________________________________
|
|
||||||
Ppp mailing list
|
|
||||||
Ppp@zzz.org
|
|
||||||
http://www.zzz.org/mailman/listinfo/ppp
|
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
Return-Path: <bbb@zzz.org>
|
|
||||||
Delivered-To: bbb@zzz.org
|
|
||||||
Received: by mail.zzz.org (Postfix, from userid 889)
|
|
||||||
id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT)
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15090.61304.110929.45684@aaa.zzz.org>
|
|
||||||
From: bbb@ddd.com (John X. Doe)
|
|
||||||
To: bbb@zzz.org
|
|
||||||
Cc: ccc@zzz.org
|
|
||||||
CC: ddd@zzz.org
|
|
||||||
cc: eee@zzz.org
|
|
||||||
Subject: This is a test message
|
|
||||||
Date: Fri, 4 May 2001 14:05:44 -0400
|
|
||||||
|
|
||||||
|
|
||||||
Hi,
|
|
||||||
|
|
||||||
Do you like this message?
|
|
||||||
|
|
||||||
-Me
|
|
|
@ -1,22 +0,0 @@
|
||||||
From: aperson@dom.ain
|
|
||||||
To: bperson@dom.ain
|
|
||||||
Subject: Test
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
MIME message
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
|
|
||||||
One
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain; charset="us-ascii"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
|
|
||||||
Two
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
||||||
End of MIME message
|
|
|
@ -1,46 +0,0 @@
|
||||||
Mime-Version: 1.0
|
|
||||||
Message-Id: <a05001902b7f1c33773e9@[134.84.183.138]>
|
|
||||||
Date: Tue, 16 Oct 2001 13:59:25 +0300
|
|
||||||
To: a@example.com
|
|
||||||
From: b@example.com
|
|
||||||
Content-Type: multipart/mixed; boundary="============_-1208892523==_============"
|
|
||||||
|
|
||||||
--============_-1208892523==_============
|
|
||||||
Content-Type: text/plain; charset="us-ascii" ; format="flowed"
|
|
||||||
|
|
||||||
Text text text.
|
|
||||||
--============_-1208892523==_============
|
|
||||||
Content-Id: <a05001902b7f1c33773e9@[134.84.183.138].0.0>
|
|
||||||
Content-Type: image/jpeg; name="wibble.JPG"
|
|
||||||
; x-mac-type="4A504547"
|
|
||||||
; x-mac-creator="474B4F4E"
|
|
||||||
Content-Disposition: attachment; filename="wibble.JPG"
|
|
||||||
Content-Transfer-Encoding: base64
|
|
||||||
|
|
||||||
/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB
|
|
||||||
AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABIEBAREA
|
|
||||||
g6bCjjw/pIZSjO6FWFpldjySOmCNrO7DBZibUXhTwtCixw+GtAijVdqxxaPp0aKvmGXa
|
|
||||||
qrbBQvms0mAMeYS/3iTV1dG0hHaRNK01XblnWxtVdjkHLMIgTyqnk9VB7CrP2KzIINpa
|
|
||||||
4O7I+zxYO9WV8jZg71Zlb+8rMDkEirAVQFAUAKAFAAAUAYAUDgADgY6DjpRtXj5RxjHA
|
|
||||||
4wQRj0wQCMdCAewpaKKK/9k=
|
|
||||||
--============_-1208892523==_============
|
|
||||||
Content-Id: <a05001902b7f1c33773e9@[134.84.183.138].0.1>
|
|
||||||
Content-Type: image/jpeg; name="wibble2.JPG"
|
|
||||||
; x-mac-type="4A504547"
|
|
||||||
; x-mac-creator="474B4F4E"
|
|
||||||
Content-Disposition: attachment; filename="wibble2.JPG"
|
|
||||||
Content-Transfer-Encoding: base64
|
|
||||||
|
|
||||||
/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEB
|
|
||||||
AQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQH/wAALCAXABJ0BAREA
|
|
||||||
/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA
|
|
||||||
W6NFJJBEkU10kKGTcWMDwxuU+0JHvk8qAtOpNwqSR0n8c3BlDyXHlqsUltHEiTvdXLxR
|
|
||||||
7vMiGDNJAJWkAMk8ZkCFp5G2oo5W++INrbQtNfTQxJAuXlupz9oS4d5Y1W+E2XlWZJJE
|
|
||||||
Y7LWYQxTLE1zuMbfBPxw8X2fibVdIbSbI6nLZxX635t9TjtYreWR7WGKJTLJFFKSlozO
|
|
||||||
0ShxIXM43uC3/9k=
|
|
||||||
--============_-1208892523==_============
|
|
||||||
Content-Type: text/plain; charset="us-ascii" ; format="flowed"
|
|
||||||
|
|
||||||
Text text text.
|
|
||||||
--============_-1208892523==_============--
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
From: aperson@dom.ain
|
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: text/plain
|
|
||||||
|
|
||||||
A message part
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,10 +0,0 @@
|
||||||
Content-Type: multipart/mixed; boundary="BOUNDARY"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Subject: A subject
|
|
||||||
To: aperson@dom.ain
|
|
||||||
From: bperson@dom.ain
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,117 +0,0 @@
|
||||||
From MAILER-DAEMON Fri Apr 06 16:46:09 2001
|
|
||||||
Received: from [204.245.199.98] (helo=zinfandel.lacita.com)
|
|
||||||
by www.linux.org.uk with esmtp (Exim 3.13 #1)
|
|
||||||
id 14lYR6-0008Iv-00
|
|
||||||
for linuxuser-admin@www.linux.org.uk; Fri, 06 Apr 2001 16:46:09 +0100
|
|
||||||
Received: from localhost (localhost) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with internal id JAB03225; Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800)
|
|
||||||
Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800)
|
|
||||||
From: Mail Delivery Subsystem <MAILER-DAEMON@zinfandel.lacita.com>
|
|
||||||
Subject: Returned mail: Too many hops 19 (17 max): from <linuxuser-admin@www.linux.org.uk> via [199.164.235.226], to <scoffman@wellpartner.com>
|
|
||||||
Message-Id: <200104061723.JAB03225@zinfandel.lacita.com>
|
|
||||||
To: <linuxuser-admin@www.linux.org.uk>
|
|
||||||
To: postmaster@zinfandel.lacita.com
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/report; report-type=delivery-status;
|
|
||||||
bo
|
|
||||||
Auto-Submitted: auto-generated (failure)
|
|
||||||
|
|
||||||
This is a MIME-encapsulated message
|
|
||||||
|
|
||||||
--JAB03225.986577786/zinfandel.lacita.com
|
|
||||||
|
|
||||||
The original message was received at Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800)
|
|
||||||
from [199.164.235.226]
|
|
||||||
|
|
||||||
----- The following addresses have delivery notifications -----
|
|
||||||
<scoffman@wellpartner.com> (unrecoverable error)
|
|
||||||
|
|
||||||
----- Transcript of session follows -----
|
|
||||||
554 Too many hops 19 (17 max): from <linuxuser-admin@www.linux.org.uk> via [199.164.235.226], to <scoffman@wellpartner.com>
|
|
||||||
|
|
||||||
--JAB03225.986577786/zinfandel.lacita.com
|
|
||||||
Content-Type: message/delivery-status
|
|
||||||
|
|
||||||
Reporting-MTA: dns; zinfandel.lacita.com
|
|
||||||
Received-From-MTA: dns; [199.164.235.226]
|
|
||||||
Arrival-Date: Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800)
|
|
||||||
|
|
||||||
Final-Recipient: rfc822; scoffman@wellpartner.com
|
|
||||||
Action: failed
|
|
||||||
Status: 5.4.6
|
|
||||||
Last-Attempt-Date: Fri, 6 Apr 2001 09:23:06 -0800 (GMT-0800)
|
|
||||||
|
|
||||||
--JAB03225.986577786/zinfandel.lacita.com
|
|
||||||
Content-Type: text/rfc822-headers
|
|
||||||
|
|
||||||
Return-Path: linuxuser-admin@www.linux.org.uk
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03225 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:23:03 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03221 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:22:18 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03217 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:21:37 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03213 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:20:56 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03209 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:20:15 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03205 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:19:33 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03201 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:18:52 -0800 (GMT-0800)
|
|
||||||
Received: from zinfandel.lacita.com ([204.245.199.98])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from ns1.wellpartner.net ([199.164.235.226]) by zinfandel.lacita.com (8.7.3/8.6.10-MT4.00) with ESMTP id JAA03197 for <scoffman@wellpartner.com>; Fri, 6 Apr 2001 09:17:54 -0800 (GMT-0800)
|
|
||||||
Received: from www.linux.org.uk (parcelfarce.linux.theplanet.co.uk [195.92.249.252])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
Received: from localhost.localdomain
|
|
||||||
([
|
|
||||||
by
|
|
||||||
id
|
|
||||||
Received: from [212.1.130.11] (helo=s1.uklinux.net ident=root)
|
|
||||||
by
|
|
||||||
id
|
|
||||||
fo
|
|
||||||
Received: from server (ppp-2-22.cvx4.telinco.net [212.1.149.22])
|
|
||||||
by
|
|
||||||
fo
|
|
||||||
From: Daniel James <daniel@linuxuser.co.uk>
|
|
||||||
Organization: LinuxUser
|
|
||||||
To: linuxuser@www.linux.org.uk
|
|
||||||
X-Mailer: KMail [version 1.1.99]
|
|
||||||
Content-Type: text/plain;
|
|
||||||
c
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Message-Id: <01040616033903.00962@server>
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
Subject: [LinuxUser] bulletin no. 45
|
|
||||||
Sender: linuxuser-admin@www.linux.org.uk
|
|
||||||
Errors-To: linuxuser-admin@www.linux.org.uk
|
|
||||||
X-BeenThere: linuxuser@www.linux.org.uk
|
|
||||||
X-Mailman-Version: 2.0.3
|
|
||||||
Precedence: bulk
|
|
||||||
List-Help: <mailto:linuxuser-request@www.linux.org.uk?subject=help>
|
|
||||||
List-Post: <mailto:linuxuser@www.linux.org.uk>
|
|
||||||
List-Subscribe: <http://www.linux.org.uk/mailman/listinfo/linuxuser>,
|
|
||||||
<m
|
|
||||||
List-Id: bulletins from LinuxUser magazine <linuxuser.www.linux.org.uk>
|
|
||||||
List-Unsubscribe: <http://www.linux.org.uk/mailman/listinfo/linuxuser>,
|
|
||||||
<m
|
|
||||||
List-Archive: <http://www.linux.org.uk/pipermail/linuxuser/>
|
|
||||||
Date: Fri, 6 Apr 2001 16:03:39 +0100
|
|
||||||
|
|
||||||
--JAB03225.986577786/zinfandel.lacita.com--
|
|
||||||
|
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
Received: from xcar [192.168.0.2] by jeeves.wooster.local
|
|
||||||
(SMTPD32-7.07 EVAL) id AFF92F0214; Sun, 12 May 2002 08:55:37 +0100
|
|
||||||
Date: Sun, 12 May 2002 08:56:15 +0100
|
|
||||||
From: Father Time <father.time@xcar.wooster.local>
|
|
||||||
To: timbo@jeeves.wooster.local
|
|
||||||
Subject: IMAP file test
|
|
||||||
Message-ID: <6df65d354b.father.time@rpc.wooster.local>
|
|
||||||
X-Organization: Home
|
|
||||||
User-Agent: Messenger-Pro/2.50a (MsgServe/1.50) (RISC-OS/4.02) POPstar/2.03
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/mixed; boundary="1618492860--2051301190--113853680"
|
|
||||||
Status: R
|
|
||||||
X-UIDL: 319998302
|
|
||||||
|
|
||||||
This message is in MIME format which your mailer apparently does not support.
|
|
||||||
You either require a newer version of your software which supports MIME, or
|
|
||||||
a separate MIME decoding utility. Alternatively, ask the sender of this
|
|
||||||
message to resend it in a different format.
|
|
||||||
|
|
||||||
--1618492860--2051301190--113853680
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
|
|
||||||
Simple email with attachment.
|
|
||||||
|
|
||||||
|
|
||||||
--1618492860--2051301190--113853680
|
|
||||||
Content-Type: application/riscos; name="clock.bmp,69c"; type=BMP; load=&fff69c4b; exec=&355dd4d1; access=&03
|
|
||||||
Content-Disposition: attachment; filename="clock.bmp"
|
|
||||||
Content-Transfer-Encoding: base64
|
|
||||||
|
|
||||||
Qk12AgAAAAAAAHYAAAAoAAAAIAAAACAAAAABAAQAAAAAAAAAAADXDQAA1w0AAAAAAAAA
|
|
||||||
AAAAAAAAAAAAiAAAiAAAAIiIAIgAAACIAIgAiIgAALu7uwCIiIgAERHdACLuIgAz//8A
|
|
||||||
zAAAAN0R3QDu7iIA////AAAAAAAAAAAAAAAAAAAAAAAAAAi3AAAAAAAAADeAAAAAAAAA
|
|
||||||
C3ADMzMzMANwAAAAAAAAAAAHMAAAAANwAAAAAAAAAACAMAd3zPfwAwgAAAAAAAAIAwd/
|
|
||||||
f8x/f3AwgAAAAAAAgDB0x/f3//zPAwgAAAAAAAcHfM9////8z/AwAAAAAAiwd/f3////
|
|
||||||
////A4AAAAAAcEx/f///////zAMAAAAAiwfM9////3///8zwOAAAAAcHf3////B/////
|
|
||||||
8DAAAAALB/f3///wd3d3//AwAAAABwTPf//wCQAAD/zAMAAAAAsEx/f///B////8wDAA
|
|
||||||
AAAHB39////wf/////AwAAAACwf39///8H/////wMAAAAIcHfM9///B////M8DgAAAAA
|
|
||||||
sHTH///wf///xAMAAAAACHB3f3//8H////cDgAAAAAALB3zH//D//M9wMAAAAAAAgLB0
|
|
||||||
z39///xHAwgAAAAAAAgLB3d3RHd3cDCAAAAAAAAAgLAHd0R3cAMIAAAAAAAAgAgLcAAA
|
|
||||||
AAMwgAgAAAAACDAAAAu7t7cwAAgDgAAAAABzcIAAAAAAAAgDMwAAAAAAN7uwgAAAAAgH
|
|
||||||
MzMAAAAACH97tzAAAAALu3c3gAAAAAAL+7tzDABAu7f7cAAAAAAACA+3MA7EQAv/sIAA
|
|
||||||
AAAAAAAIAAAAAAAAAIAAAAAA
|
|
||||||
|
|
||||||
--1618492860--2051301190--113853680--
|
|
|
@ -1,15 +0,0 @@
|
||||||
Return-Path: <aperson@dom.ain>
|
|
||||||
Received: by mail.dom.ain (Postfix, from userid 889)
|
|
||||||
id B9D0AD35DB; Tue, 4 Jun 2002 21:46:59 -0400 (EDT)
|
|
||||||
Message-ID: <15613.28051.707126.569693@dom.ain>
|
|
||||||
Date: Tue, 4 Jun 2002 21:46:59 -0400
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Subject: bug demonstration
|
|
||||||
12345678911234567892123456789312345678941234567895123456789612345678971234567898112345678911234567892123456789112345678911234567892123456789
|
|
||||||
more text
|
|
||||||
From: aperson@dom.ain (Anne P. Erson)
|
|
||||||
To: bperson@dom.ain (Barney P. Erson)
|
|
||||||
|
|
||||||
test
|
|
|
@ -1,25 +0,0 @@
|
||||||
From: aperson@dom.ain
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/digest; boundary=BOUNDARY
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: message/rfc822
|
|
||||||
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
To: aa@bb.org
|
|
||||||
From: cc@dd.org
|
|
||||||
Subject: ee
|
|
||||||
|
|
||||||
message 1
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
Content-Type: message/rfc822
|
|
||||||
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
To: aa@bb.org
|
|
||||||
From: cc@dd.org
|
|
||||||
Subject: ee
|
|
||||||
|
|
||||||
message 2
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -1,22 +0,0 @@
|
||||||
Return-Path: <bbb@zzz.org>
|
|
||||||
Delivered-To: bbb@zzz.org
|
|
||||||
Received: by mail.zzz.org (Postfix, from userid 889)
|
|
||||||
id 27CEAD38CC; Fri, 4 May 2001 14:05:44 -0400 (EDT)
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=us-ascii;
|
|
||||||
title*0*="us-ascii'en'This%20is%20even%20more%20";
|
|
||||||
title*1*="%2A%2A%2Afun%2A%2A%2A%20";
|
|
||||||
title*2="isn't it!"
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Message-ID: <15090.61304.110929.45684@aaa.zzz.org>
|
|
||||||
From: bbb@ddd.com (John X. Doe)
|
|
||||||
To: bbb@zzz.org
|
|
||||||
Subject: This is a test message
|
|
||||||
Date: Fri, 4 May 2001 14:05:44 -0400
|
|
||||||
|
|
||||||
|
|
||||||
Hi,
|
|
||||||
|
|
||||||
Do you like this message?
|
|
||||||
|
|
||||||
-Me
|
|
|
@ -1,23 +0,0 @@
|
||||||
From: aperson@dom.ain
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: multipart/digest; boundary=BOUNDARY
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
To: aa@bb.org
|
|
||||||
From: cc@dd.org
|
|
||||||
Subject: ee
|
|
||||||
|
|
||||||
message 1
|
|
||||||
|
|
||||||
--BOUNDARY
|
|
||||||
|
|
||||||
Content-Type: text/plain; charset=us-ascii
|
|
||||||
To: aa@bb.org
|
|
||||||
From: cc@dd.org
|
|
||||||
Subject: ee
|
|
||||||
|
|
||||||
message 2
|
|
||||||
|
|
||||||
--BOUNDARY--
|
|
|
@ -64,8 +64,7 @@ import traceback
|
||||||
import random
|
import random
|
||||||
import StringIO
|
import StringIO
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
RESOURCE_NAMES = ('curses', 'largefile', 'network')
|
RESOURCE_NAMES = ('curses', 'largefile', 'network')
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import unittest
|
||||||
import StringIO
|
import StringIO
|
||||||
import cStringIO
|
import cStringIO
|
||||||
import types
|
import types
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class TestGenericStringIO(unittest.TestCase):
|
class TestGenericStringIO(unittest.TestCase):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/env python
|
#! /usr/bin/env python
|
||||||
from test_support import verbose, verify
|
from test.test_support import verbose, verify
|
||||||
from types import TupleType, StringType, IntType
|
from types import TupleType, StringType, IntType
|
||||||
import __future__
|
import __future__
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
import anydbm
|
import anydbm
|
||||||
import tempfile
|
import tempfile
|
||||||
import glob
|
import glob
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
_fname = tempfile.mktemp()
|
_fname = tempfile.mktemp()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Roger E. Masse
|
Roger E. Masse
|
||||||
"""
|
"""
|
||||||
import array
|
import array
|
||||||
from test_support import verbose, TESTFN, unlink, TestFailed,\
|
from test.test_support import verbose, TESTFN, unlink, TestFailed,\
|
||||||
have_unicode, vereq
|
have_unicode, vereq
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Test audioop.
|
# Test audioop.
|
||||||
import audioop
|
import audioop
|
||||||
from test_support import verbose
|
from test.test_support import verbose
|
||||||
|
|
||||||
def gendata1():
|
def gendata1():
|
||||||
return '\0\1\2'
|
return '\0\1\2'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import unittest
|
import unittest
|
||||||
import test_support
|
from test import test_support
|
||||||
import base64
|
import base64
|
||||||
from binascii import Error as binascii_error
|
from binascii import Error as binascii_error
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
import binhex
|
import binhex
|
||||||
import os
|
import os
|
||||||
import tempfile
|
import tempfile
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class BinHexTestCase(unittest.TestCase):
|
class BinHexTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""Tests for binary operators on subtypes of built-in types."""
|
"""Tests for binary operators on subtypes of built-in types."""
|
||||||
|
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
def gcd(a, b):
|
def gcd(a, b):
|
||||||
"""Greatest common divisor using Euclid's algorithm."""
|
"""Greatest common divisor using Euclid's algorithm."""
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Test properties of bool promised by PEP 285
|
# Test properties of bool promised by PEP 285
|
||||||
|
|
||||||
from test_support import verbose, TestFailed, TESTFN, vereq, have_unicode
|
from test.test_support import verbose, TestFailed, TESTFN, vereq, have_unicode
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def veris(a, b):
|
def veris(a, b):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import calendar
|
import calendar
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from test_support import run_unittest
|
from test.test_support import run_unittest
|
||||||
|
|
||||||
|
|
||||||
class CalendarTestCase(unittest.TestCase):
|
class CalendarTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import run_unittest
|
from test.test_support import run_unittest
|
||||||
|
|
||||||
# The test cases here cover several paths through the function calling
|
# The test cases here cover several paths through the function calling
|
||||||
# code. They depend on the METH_XXX flag that is used to define a C
|
# code. They depend on the METH_XXX flag that is used to define a C
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# these are all functions _testcapi exports whose name begins with 'test_'.
|
# these are all functions _testcapi exports whose name begins with 'test_'.
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import test_support
|
from test import test_support
|
||||||
import _testcapi
|
import _testcapi
|
||||||
|
|
||||||
for name in dir(_testcapi):
|
for name in dir(_testcapi):
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Roger E. Masse
|
Roger E. Masse
|
||||||
"""
|
"""
|
||||||
import cmath
|
import cmath
|
||||||
from test_support import verbose
|
from test.test_support import verbose
|
||||||
|
|
||||||
testdict = {'acos' : 1.0,
|
testdict = {'acos' : 1.0,
|
||||||
'acosh' : 1.0,
|
'acosh' : 1.0,
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import test_support,unittest
|
from test import test_support
|
||||||
|
import unittest
|
||||||
import codecs
|
import codecs
|
||||||
import StringIO
|
import StringIO
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Nick Mathewson
|
Nick Mathewson
|
||||||
"""
|
"""
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import run_unittest
|
from test.test_support import run_unittest
|
||||||
|
|
||||||
from codeop import compile_command
|
from codeop import compile_command
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
import os, tempfile, re
|
import os, tempfile, re
|
||||||
|
|
||||||
from test_support import TestSkipped, run_unittest
|
from test.test_support import TestSkipped, run_unittest
|
||||||
from commands import *
|
from commands import *
|
||||||
|
|
||||||
# The module says:
|
# The module says:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verbose, TestFailed
|
from test.test_support import verbose, TestFailed
|
||||||
|
|
||||||
if verbose:
|
if verbose:
|
||||||
print "Testing whether compiler catches assignment to __debug__"
|
print "Testing whether compiler catches assignment to __debug__"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Simple test suite for Cookie.py
|
# Simple test suite for Cookie.py
|
||||||
|
|
||||||
from test_support import verify, verbose, run_doctest
|
from test.test_support import verify, verbose, run_doctest
|
||||||
import Cookie
|
import Cookie
|
||||||
|
|
||||||
# Currently this only tests SimpleCookie
|
# Currently this only tests SimpleCookie
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import copy_reg
|
import copy_reg
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class C:
|
class C:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import cPickle
|
import cPickle
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
from cStringIO import StringIO
|
from cStringIO import StringIO
|
||||||
from pickletester import AbstractPickleTests, AbstractPickleModuleTests
|
from pickletester import AbstractPickleTests, AbstractPickleModuleTests
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
class cPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
|
class cPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Roger E. Masse
|
Roger E. Masse
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from test_support import verify, verbose
|
from test.test_support import verify, verbose
|
||||||
import crypt
|
import crypt
|
||||||
|
|
||||||
c = crypt.crypt('mypassword', 'ab')
|
c = crypt.crypt('mypassword', 'ab')
|
||||||
|
|
|
@ -14,7 +14,7 @@ import curses, sys, tempfile
|
||||||
# 'curses' resource be given on the regrtest command line using the -u
|
# 'curses' resource be given on the regrtest command line using the -u
|
||||||
# option. If not available, nothing after this line will be executed.
|
# option. If not available, nothing after this line will be executed.
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
test_support.requires('curses')
|
test_support.requires('curses')
|
||||||
|
|
||||||
def window_funcs(stdscr):
|
def window_funcs(stdscr):
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"""
|
"""
|
||||||
import dbm
|
import dbm
|
||||||
from dbm import error
|
from dbm import error
|
||||||
from test_support import verbose, verify
|
from test.test_support import verbose, verify
|
||||||
|
|
||||||
filename = '/tmp/delete_me'
|
filename = '/tmp/delete_me'
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Test enhancements related to descriptors and new-style classes
|
# Test enhancements related to descriptors and new-style classes
|
||||||
|
|
||||||
from test_support import verify, vereq, verbose, TestFailed, TESTFN
|
from test.test_support import verify, vereq, verbose, TestFailed, TESTFN
|
||||||
from copy import deepcopy
|
from copy import deepcopy
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
# of much interest anymore), and a few were fiddled to make the output
|
# of much interest anymore), and a few were fiddled to make the output
|
||||||
# deterministic.
|
# deterministic.
|
||||||
|
|
||||||
from test_support import sortdict
|
from test.test_support import sortdict
|
||||||
import pprint
|
import pprint
|
||||||
|
|
||||||
class defaultdict(dict):
|
class defaultdict(dict):
|
||||||
|
@ -494,8 +494,8 @@ def test_main(verbose=None):
|
||||||
# into the doctest examples, and unless the full test.test_descrtut
|
# into the doctest examples, and unless the full test.test_descrtut
|
||||||
# business is used the name can change depending on how the test is
|
# business is used the name can change depending on how the test is
|
||||||
# invoked.
|
# invoked.
|
||||||
import test_support, test.test_descrtut
|
from test import test_support, test_descrtut
|
||||||
test_support.run_doctest(test.test_descrtut, verbose)
|
test_support.run_doctest(test_descrtut, verbose)
|
||||||
|
|
||||||
# This part isn't needed for regrtest, but for running the test directly.
|
# This part isn't needed for regrtest, but for running the test directly.
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
import difflib, test_support
|
import difflib
|
||||||
|
from test import test_support
|
||||||
test_support.run_doctest(difflib)
|
test_support.run_doctest(difflib)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import run_unittest, TESTFN
|
from test.test_support import run_unittest, TESTFN
|
||||||
import dircache, os, time, sys
|
import dircache, os, time, sys
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import dl
|
import dl
|
||||||
from test_support import verbose,TestSkipped
|
from test.test_support import verbose,TestSkipped
|
||||||
|
|
||||||
sharedlibs = [
|
sharedlibs = [
|
||||||
('/usr/lib/libc.so', 'getpid'),
|
('/usr/lib/libc.so', 'getpid'),
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
import doctest, test_support
|
import doctest
|
||||||
|
from test import test_support
|
||||||
test_support.run_doctest(doctest)
|
test_support.run_doctest(doctest)
|
||||||
|
|
|
@ -5,7 +5,7 @@ like static and class methods.
|
||||||
yup
|
yup
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
class C(object):
|
class C(object):
|
||||||
"""Class C.
|
"""Class C.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import dospath
|
import dospath
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class DOSPathTestCase(unittest.TestCase):
|
class DOSPathTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
import dumbdbm
|
import dumbdbm
|
||||||
import tempfile
|
import tempfile
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
_fname = tempfile.mktemp()
|
_fname = tempfile.mktemp()
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
seq, res = 'abc', [(0,'a'), (1,'b'), (2,'c')]
|
seq, res = 'abc', [(0,'a'), (1,'b'), (2,'c')]
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import errno
|
import errno
|
||||||
from test_support import verbose
|
from test.test_support import verbose
|
||||||
|
|
||||||
errors = ['E2BIG', 'EACCES', 'EADDRINUSE', 'EADDRNOTAVAIL', 'EADV',
|
errors = ['E2BIG', 'EACCES', 'EADDRINUSE', 'EADDRNOTAVAIL', 'EADV',
|
||||||
'EAFNOSUPPORT', 'EAGAIN', 'EALREADY', 'EBADE', 'EBADF',
|
'EAFNOSUPPORT', 'EAGAIN', 'EALREADY', 'EBADE', 'EBADF',
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
import struct
|
import struct
|
||||||
import fcntl
|
import fcntl
|
||||||
import os, sys
|
import os, sys
|
||||||
from test_support import verbose, TESTFN
|
from test.test_support import verbose, TESTFN
|
||||||
|
|
||||||
filename = TESTFN
|
filename = TESTFN
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ Tests for fileinput module.
|
||||||
Nick Mathewson
|
Nick Mathewson
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from test_support import verify, verbose, TESTFN
|
from test.test_support import verify, verbose, TESTFN
|
||||||
import sys, os, re
|
import sys, os, re
|
||||||
from StringIO import StringIO
|
from StringIO import StringIO
|
||||||
from fileinput import FileInput
|
from fileinput import FileInput
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""Test cases for the fnmatch module."""
|
"""Test cases for the fnmatch module."""
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
from fnmatch import fnmatch, fnmatchcase
|
from fnmatch import fnmatch, fnmatchcase
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verbose, have_unicode
|
from test.test_support import verbose, have_unicode
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
# test string formatting operator (I am not sure if this is being tested
|
# test string formatting operator (I am not sure if this is being tested
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Tests for fpformat module
|
Tests for fpformat module
|
||||||
Nick Mathewson
|
Nick Mathewson
|
||||||
'''
|
'''
|
||||||
from test_support import run_unittest
|
from test.test_support import run_unittest
|
||||||
import unittest
|
import unittest
|
||||||
from fpformat import fix, sci, NotANumber
|
from fpformat import fix, sci, NotANumber
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Test various flavors of legal and illegal future statements
|
# Test various flavors of legal and illegal future statements
|
||||||
|
|
||||||
from test_support import unload
|
from test.test_support import unload
|
||||||
import re
|
import re
|
||||||
|
|
||||||
rx = re.compile('\((\S+).py, line (\d+)')
|
rx = re.compile('\((\S+).py, line (\d+)')
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verify, verbose, TestFailed
|
from test.test_support import verify, verbose, TestFailed
|
||||||
import sys
|
import sys
|
||||||
import gc
|
import gc
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
import gdbm
|
import gdbm
|
||||||
from gdbm import error
|
from gdbm import error
|
||||||
from test_support import verbose, verify, TestFailed
|
from test.test_support import verbose, verify, TestFailed
|
||||||
|
|
||||||
filename= '/tmp/delete_me'
|
filename= '/tmp/delete_me'
|
||||||
|
|
||||||
|
|
|
@ -483,6 +483,7 @@ A->A B->G C->A D->G E->G F->A G->G H->G I->A J->G K->A L->A M->G
|
||||||
merged A into G
|
merged A into G
|
||||||
A->G B->G C->G D->G E->G F->G G->G H->G I->G J->G K->G L->G M->G
|
A->G B->G C->G D->G E->G F->G G->G H->G I->G J->G K->G L->G M->G
|
||||||
"""
|
"""
|
||||||
|
# Emacs turd '
|
||||||
|
|
||||||
# Fun tests (for sufficiently warped notions of "fun").
|
# Fun tests (for sufficiently warped notions of "fun").
|
||||||
|
|
||||||
|
@ -1370,7 +1371,8 @@ __test__ = {"tut": tutorial_tests,
|
||||||
# Note that doctest and regrtest both look in sys.argv for a "-v" argument,
|
# Note that doctest and regrtest both look in sys.argv for a "-v" argument,
|
||||||
# so this works as expected in both ways of running regrtest.
|
# so this works as expected in both ways of running regrtest.
|
||||||
def test_main(verbose=None):
|
def test_main(verbose=None):
|
||||||
import doctest, test_support, test_generators
|
import doctest
|
||||||
|
from test import test_support, test_generators
|
||||||
if 0: # change to 1 to run forever (to check for leaks)
|
if 0: # change to 1 to run forever (to check for leaks)
|
||||||
while 1:
|
while 1:
|
||||||
doctest.master = None
|
doctest.master = None
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
import getopt
|
import getopt
|
||||||
from getopt import GetoptError
|
from getopt import GetoptError
|
||||||
from test_support import verify, verbose
|
from test.test_support import verify, verbose
|
||||||
import os
|
import os
|
||||||
|
|
||||||
def expectException(teststr, expected, failure=AssertionError):
|
def expectException(teststr, expected, failure=AssertionError):
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import run_unittest, TESTFN
|
from test.test_support import run_unittest, TESTFN
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
# XXX This really needs some work, but what are the expected invariants?
|
# XXX This really needs some work, but what are the expected invariants?
|
||||||
|
|
||||||
import grp
|
import grp
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class GroupDatabaseTestCase(unittest.TestCase):
|
class GroupDatabaseTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
# iff a==b then hash(a)==hash(b)
|
# iff a==b then hash(a)==hash(b)
|
||||||
#
|
#
|
||||||
|
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class HashEqualityTestCase(unittest.TestCase):
|
class HashEqualityTestCase(unittest.TestCase):
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import hmac
|
import hmac
|
||||||
import unittest
|
import unittest
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
class TestVectorsTestCase(unittest.TestCase):
|
class TestVectorsTestCase(unittest.TestCase):
|
||||||
def test_vectors(self):
|
def test_vectors(self):
|
||||||
|
|
|
@ -4,7 +4,7 @@ import os
|
||||||
import pprint
|
import pprint
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
from hotshot.log import ENTER, EXIT, LINE
|
from hotshot.log import ENTER, EXIT, LINE
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import formatter
|
||||||
import htmllib
|
import htmllib
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class AnchorCollector(htmllib.HTMLParser):
|
class AnchorCollector(htmllib.HTMLParser):
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
import HTMLParser
|
import HTMLParser
|
||||||
import pprint
|
import pprint
|
||||||
import sys
|
import sys
|
||||||
import test_support
|
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
class EventCollector(HTMLParser.HTMLParser):
|
class EventCollector(HTMLParser.HTMLParser):
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
Roger E. Masse
|
Roger E. Masse
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from test_support import verbose, unlink
|
from test.test_support import verbose, unlink
|
||||||
|
|
||||||
import imageop, uu, os
|
import imageop, uu, os
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
Roger E. Masse
|
Roger E. Masse
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from test_support import verbose, unlink, findfile
|
from test.test_support import verbose, unlink, findfile
|
||||||
|
|
||||||
import imgfile, uu, os
|
import imgfile, uu, os
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import TESTFN, TestFailed
|
from test.test_support import TESTFN, TestFailed
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
|
|
|
@ -62,7 +62,7 @@ class FesteringGob(MalodorousPervert, ParrotDroppings):
|
||||||
# getsourcefile, getcomments, getsource, getclasstree, getargspec,
|
# getsourcefile, getcomments, getsource, getclasstree, getargspec,
|
||||||
# getargvalues, formatargspec, formatargvalues, currentframe, stack, trace
|
# getargvalues, formatargspec, formatargvalues, currentframe, stack, trace
|
||||||
|
|
||||||
from test_support import TestFailed, TESTFN
|
from test.test_support import TestFailed, TESTFN
|
||||||
import sys, imp, os, string
|
import sys, imp, os, string
|
||||||
|
|
||||||
def test(assertion, message, *args):
|
def test(assertion, message, *args):
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# testing of error conditions uncovered when using extension types.
|
# testing of error conditions uncovered when using extension types.
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import test_support
|
from test import test_support
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Test iterators.
|
# Test iterators.
|
||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
from test_support import run_unittest, TESTFN, unlink, have_unicode
|
from test.test_support import run_unittest, TESTFN, unlink, have_unicode
|
||||||
|
|
||||||
# Test result of triple loop (too big to inline)
|
# Test result of triple loop (too big to inline)
|
||||||
TRIPLETS = [(0, 0, 0), (0, 0, 1), (0, 0, 2),
|
TRIPLETS = [(0, 0, 0), (0, 0, 1), (0, 0, 2),
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#
|
#
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
import test_support
|
from test import test_support
|
||||||
import os, struct, stat, sys
|
import os, struct, stat, sys
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verbose, findfile, TestFailed, TestSkipped
|
from test.test_support import verbose, findfile, TestFailed, TestSkipped
|
||||||
|
|
||||||
import errno
|
import errno
|
||||||
import fcntl
|
import fcntl
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verbose
|
from test.test_support import verbose
|
||||||
import locale
|
import locale
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import verify, verbose, TestFailed, fcmp
|
from test.test_support import verify, verbose, TestFailed, fcmp
|
||||||
from string import join
|
from string import join
|
||||||
from random import random, randint
|
from random import random, randint
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ from __future__ import division
|
||||||
# test_long.py instead. In the meantime, it's too obscure to try to
|
# test_long.py instead. In the meantime, it's too obscure to try to
|
||||||
# trick just part of test_long into using future division.
|
# trick just part of test_long into using future division.
|
||||||
|
|
||||||
from test_support import TestFailed, verify, verbose
|
from test.test_support import TestFailed, verify, verbose
|
||||||
|
|
||||||
def test_true_division():
|
def test_true_division():
|
||||||
if verbose:
|
if verbose:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import mailbox
|
import mailbox
|
||||||
import os
|
import os
|
||||||
import test_support
|
|
||||||
import time
|
import time
|
||||||
import unittest
|
import unittest
|
||||||
|
from test import test_support
|
||||||
|
|
||||||
# cleanup earlier tests
|
# cleanup earlier tests
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from test_support import TestFailed
|
from test.test_support import TestFailed
|
||||||
import marshal
|
import marshal
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Python test set -- math module
|
# Python test set -- math module
|
||||||
# XXXX Should not do tests around zero only
|
# XXXX Should not do tests around zero only
|
||||||
|
|
||||||
from test_support import *
|
from test.test_support import *
|
||||||
|
|
||||||
seps='1e-05'
|
seps='1e-05'
|
||||||
eps = eval(seps)
|
eps = eval(seps)
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue