Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unneeded alias. | Marc-André Lemburg | 2002-10-04 | 1 | -1/+0 |
| | |||||
* | Fix doc-string. | Marc-André Lemburg | 2002-10-04 | 1 | -3/+3 |
| | |||||
* | Adapt lookup names to new more general encoding name normalization | Marc-André Lemburg | 2002-10-04 | 1 | -14/+14 |
| | | | | scheme. | ||||
* | Extending the encoding name normalization to handle more non-alphanumeric | Marc-André Lemburg | 2002-10-04 | 1 | -8/+20 |
| | | | | characters. | ||||
* | Pulling Mark Alexander's contribution from CVS. | Marc-André Lemburg | 2002-10-04 | 5 | -948/+14 |
| | |||||
* | Tests for pep277 - Unicode file names on Windows NT. | Mark Hammond | 2002-10-03 | 2 | -0/+110 |
| | |||||
* | Updates to track Grammar changes. The patch to token.py loosens the regexp to | Michael W. Hudson | 2002-10-03 | 2 | -1/+3 |
| | | | | allow "testlist1" to be snagged. | ||||
* | Patch 594001: PEP 277 - Unicode file name support for Windows NT. | Mark Hammond | 2002-10-03 | 1 | -0/+4 |
| | |||||
* | Fix an endcase bug: initial_indent was ignored when the text was short | Guido van Rossum | 2002-10-02 | 2 | -5/+16 |
| | | | | enough to fit in one line. | ||||
* | Fix for the recursion_level bug Armin Rigo reported in sf | Michael W. Hudson | 2002-10-02 | 1 | -0/+20 |
| | | | | | | | patch #617312, both on the trunk and the 22-maint branch. Also added a test case, and ported the test_trace I wrote for HEAD to 2.2.2 (with all those horrible extra 'line' events ;-). | ||||
* | test__all__(): Fix the import list. | Barry Warsaw | 2002-10-01 | 1 | -4/+4 |
| | |||||
* | save the verbose argument as an instance attributes. Subclasses of | Skip Montanaro | 2002-10-01 | 1 | -0/+1 |
| | | | | | CCompiler may rely on the presence of self.verbose (SciPy's distutils appears to). | ||||
* | Commit fix for SF 603831. | Guido van Rossum | 2002-10-01 | 1 | -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. | ||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-10-01 | 1 | -3/+3 |
| | |||||
* | _structure(): Swap fp and level arguments. | Barry Warsaw | 2002-10-01 | 1 | -2/+2 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-10-01 | 1 | -6/+15 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-10-01 | 2 | -17/+17 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-09-30 | 1 | -3/+4 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-09-30 | 1 | -3/+3 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-09-30 | 1 | -3/+3 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-09-30 | 1 | -3/+3 |
| | |||||
* | __all__: Updated | Barry Warsaw | 2002-09-30 | 1 | -20/+22 |
| | |||||
* | Docstring consistency with the updated .tex files. | Barry Warsaw | 2002-09-30 | 1 | -0/+14 |
| | |||||
* | Now that TestCase is a new-style class, change loadTestsFromModule and | Guido van Rossum | 2002-09-30 | 1 | -2/+4 |
| | | | | loadTestsFromName to accept new-style classes too! | ||||
* | __contains__(): Change the second argument to `name' for consistency. | Barry Warsaw | 2002-09-30 | 1 | -58/+69 |
| | | | | | | I seriously doubt this will break any deployed code. Docstring consistency with the updated .tex files. | ||||
* | Patch #615069: Fix build problems on SCO Open Server 5. Backported to 2.2. | Martin v. Löwis | 2002-09-30 | 1 | -1/+58 |
| | |||||
* | With help from Martin v. Loewis, clarification is added for the | Barry Warsaw | 2002-09-30 | 1 | -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 Cygwin | Jason Tishler | 2002-09-30 | 1 | -5/+7 |
| | | | | Relax regular expression to handle spaces in user and group names. | ||||
* | The ansi_x3.4_1968 encoding is an alias for ascii, but isn't known in | Barry Warsaw | 2002-09-30 | 2 | -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. | ||||
* | Finding a suitable interpreter to spawn needed tweaking on the Mac | Tony Lownds | 2002-09-29 | 1 | -4/+17 |
| | |||||
* | Whitespace normalization (get rid of tabs). | Guido van Rossum | 2002-09-29 | 6 | -100/+98 |
| | |||||
* | Mac users now see correct modifiers in the Key Binding Entry window. | Tony Lownds | 2002-09-29 | 1 | -29/+35 |
| | |||||
* | Change key binding to avoid conflict. | Tony Lownds | 2002-09-29 | 1 | -2/+2 |
| | |||||
* | Make the tests pass under Python 2.1 but only by cheating. Python 2.1 | Barry Warsaw | 2002-09-28 | 1 | -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 update | Barry Warsaw | 2002-09-28 | 1 | -9/+16 |
| | | | | some of the test values which change because of this. | ||||
* | Use True/False everywhere, and other code cleanups. | Barry Warsaw | 2002-09-28 | 2 | -18/+30 |
| | |||||
* | Code cleanup and add docstrings. | Barry Warsaw | 2002-09-28 | 1 | -2/+17 |
| | |||||
* | Use True/False everywhere, and other code cleanups. | Barry Warsaw | 2002-09-28 | 1 | -7/+11 |
| | |||||
* | Use True/False everywhere. | Barry Warsaw | 2002-09-28 | 1 | -5/+12 |
| | |||||
* | is_multipart(): Use isinstance() instead of type equality. | Barry Warsaw | 2002-09-28 | 1 | -1/+1 |
| | |||||
* | Docstring and code cleanups, e.g. use True/False everywhere. | Barry Warsaw | 2002-09-28 | 1 | -58/+62 |
| | |||||
* | __init__(): Minor code cleanup. | Barry Warsaw | 2002-09-28 | 1 | -1/+1 |
| | |||||
* | Add a pychecker suppression. | Barry Warsaw | 2002-09-28 | 1 | -0/+4 |
| | |||||
* | Use True/False everywhere. | Barry Warsaw | 2002-09-28 | 1 | -20/+19 |
| | |||||
* | Added a feature suggested by Martin v Loewis, where a new header | Barry Warsaw | 2002-09-28 | 1 | -37/+55 |
| | | | | | | | | | | | | | encoding flag SHORTEST means to return the shortest encoding between base64 and qp. This is used for the header_enc for utf-8. SHORTEST isn't legal for body_enc. Also some code cleanup: - use True/False everywhere - use == instead of `is' in a few places - added _unicode() and make consistent the "is unicode" checks - update docstrings | ||||
* | Allow internal whitespace in keys. | Fred Drake | 2002-09-27 | 2 | -3/+10 |
| | | | | Closes SF bug #583248; backporting to r22-maint branch. | ||||
* | items(): New method, provided by Gustavo Niemeyer in SF bug #545096. | Fred Drake | 2002-09-27 | 1 | -0/+33 |
| | |||||
* | Added regression test for SF bug #561822: has_option() case sensitive. | Fred Drake | 2002-09-27 | 1 | -0/+5 |
| | |||||
* | has_option(): Use the option name transform consistently. | Fred Drake | 2002-09-27 | 1 | -53/+49 |
| | | | | | | | | Closes SF bug #561822. Integrate the "code cleanup and general bug fix patch" (SF bug #545096), contributed by Gustavo Niemeyer. This is the portion of that patch that does not add new functionality. | ||||
* | Revert Rev 1.6 | Kurt B. Kaiser | 2002-09-27 | 1 | -9/+0 |
| | | | | | | | | | "Merge Py Idle changes: Rev 1.7 [Python-idle] loewis Convert characters from the locale's encoding on output. Reject characters outside the locale's encoding on input." Not compatible with Python 2.2.1. Forwardport as a SF patch. |