summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add a comment to the top of the file explaining why the file is here.Fred Drake2002-10-011-0/+7
|
* Mention droped support for Tcl/Tk 8.0 and 8.1.Guido van Rossum2002-10-011-0/+4
|
* Eliminate constness warnings with Tcl 8.4.Martin v. Löwis2002-10-011-4/+13
|
* test__all__(): Fix the import list.Barry Warsaw2002-10-011-4/+4
|
* Drop support for Tk 8.0 and 8.1.Martin v. Löwis2002-10-011-137/+2
|
* save the verbose argument as an instance attributes. Subclasses ofSkip Montanaro2002-10-011-0/+1
| | | | | CCompiler may rely on the presence of self.verbose (SciPy's distutils appears to).
* build(): Use self.builddir, not self.doc when copying the icons, soBarry Warsaw2002-10-011-1/+1
| | | | they'll end up in the right directory when --dir is used.
* When the HTML output dir is specified using --dir=~/foo, the tildeFred Drake2002-10-011-1/+1
| | | | | needs to be expanded by mkhowto, since the shell won't touch it except at the start of the complete argument.
* nitsBarry Warsaw2002-10-013-0/+39
|
* Include the --dir argument in the help text.Fred Drake2002-10-011-0/+1
|
* Change the default path to icons so that "mkhowto" does the "right thing" byFred Drake2002-10-013-3/+5
| | | | | | default when used for 3rd-party docs. This requires the standard Python docs to specify a location, but they are a bit of a special case in sharing one set of icons among several documents.
* Added an introduction.Barry Warsaw2002-10-011-1/+57
|
* Stub document for the stand-alone email package distribution.Fred Drake2002-10-011-0/+29
| | | | Barry, please add a reasonable abstract!
* Minor style nit for referring to other attributes of the same classFred Drake2002-10-011-1/+1
| | | | from an attributes description.
* Split the long email package examples into separate files and useFred Drake2002-10-015-273/+269
| | | | | | \verbatiminput instead of the verbatim environment -- this does the "right thing" regarding page breaks in long examples for the typeset formats, and has nice benefits for the HTML version as well.
* Cleaned up the examples.Barry Warsaw2002-10-011-27/+22
|
* Proofread and spell checked, all except the Examples section (whichBarry Warsaw2002-10-019-358/+351
| | | | I'll do next).
* Commit fix for SF 603831.Guido van Rossum2002-10-011-1/+2
| | | | | | | | | | | | Strangely, two out of three patches there seem already committed; but the essential one (get rid of the assert in object_filenames in ccompiler.py) was not yet applied. This makes the build procedure for Twisted work again. This is *not* a backport candidate despite the fact that identical code appears to exist in 2.2.2; Twisted builds fine there, so there must have been a change elsewhere.
* Vast update to email version 2. This could surely use proofreading.Barry Warsaw2002-10-0110-325/+1185
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-10-011-3/+3
|
* _structure(): Swap fp and level arguments.Barry Warsaw2002-10-011-2/+2
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-10-011-6/+15
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-10-012-17/+17
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-09-301-3/+4
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-09-301-3/+3
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-09-301-3/+3
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-09-301-3/+3
|
* __all__: UpdatedBarry Warsaw2002-09-301-20/+22
|
* Docstring consistency with the updated .tex files.Barry Warsaw2002-09-301-0/+14
|
* Now that TestCase is a new-style class, change loadTestsFromModule andGuido van Rossum2002-09-301-2/+4
| | | | loadTestsFromName to accept new-style classes too!
* __contains__(): Change the second argument to `name' for consistency.Barry Warsaw2002-09-301-58/+69
| | | | | | I seriously doubt this will break any deployed code. Docstring consistency with the updated .tex files.
* Add Tim Rice, for SCO patches.Martin v. Löwis2002-09-301-0/+1
|
* Patch #615069: Fix build problems on SCO Open Server 5. Backported to 2.2.Martin v. Löwis2002-09-305-11/+92
|
* With help from Martin v. Loewis, clarification is added for theBarry Warsaw2002-09-301-29/+61
| | | | | | | | | | | | | | | | | | | | semantics of header chunks using byte and Unicode strings. Specifically, append(): When the given string is a byte string, charset (whether specified explicitly in the argument list or implicitly via the constructor default) is the encoding of the byte string, and a UnicodeError will be raised if the string cannot be decoded with that charset. If s is a Unicode string, then charset is a hint specifying the character set of the characters in the string. In this case, when producing an RFC 2822 compliant header using RFC 2047 rules, the Unicode string will be encoded using the following charsets in order: us-ascii, the charset hint, utf-8. __init__(): Use the global USASCII Charset instance when the charset argument is None. Also, clarification in the docstring. Also, use True/False where appropriate.
* Patch #544740: test_commands test fails under CygwinJason Tishler2002-09-301-5/+7
| | | | Relax regular expression to handle spaces in user and group names.
* fix a couple nits related to my understanding of ReST. Use ofSkip Montanaro2002-09-301-3/+3
| | | | | | | | | | | ``void (*)(PyObject *)`` isn't quite the same as void (*)(PyObject \*) but I gather ``...`` is preferable stylistically in most cases than ... \*...
* The ansi_x3.4_1968 encoding is an alias for ascii, but isn't known inBarry Warsaw2002-09-302-12/+9
| | | | | | | | Python 2.1.3. However it's required by the email tests suite, so poke it into the encodings aliases if it's missing. The is apparently the approved API for doing so. Now we can remove the hexversion shortcircuits in the test suite.
* fix a couple nits with my use of ReSTSkip Montanaro2002-09-301-6/+6
|
* Patch #596576: Always use cc to link on NetBSD. Will backport to 2.2.Martin v. Löwis2002-09-302-3/+5
|
* Added -b tag option to limit output to a specific branch only.Guido van Rossum2002-09-291-5/+43
| | | | Use -b HEAD to limit output to the trunk (skip all branch revisions).
* Finding a suitable interpreter to spawn needed tweaking on the MacTony Lownds2002-09-291-4/+17
|
* Whitespace normalization (get rid of tabs).Guido van Rossum2002-09-296-100/+98
|
* Mac users now see correct modifiers in the Key Binding Entry window.Tony Lownds2002-09-291-29/+35
|
* Change key binding to avoid conflict.Tony Lownds2002-09-291-2/+2
|
* Make the tests pass under Python 2.1 but only by cheating. Python 2.1Barry Warsaw2002-09-281-0/+12
| | | | | doesn't know about the ansi-x3.4-1968 charset so skip two tests that rely on that (msg_32.txt and msg_33.txt).
* Add a test for SHORTEST encoding of utf-8 headers, and also updateBarry Warsaw2002-09-281-9/+16
| | | | some of the test values which change because of this.
* Use True/False everywhere, and other code cleanups.Barry Warsaw2002-09-282-18/+30
|
* Code cleanup and add docstrings.Barry Warsaw2002-09-281-2/+17
|
* Use True/False everywhere, and other code cleanups.Barry Warsaw2002-09-281-7/+11
|
* Use True/False everywhere.Barry Warsaw2002-09-281-5/+12
|