Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | A more lightweight (and read only) way to view help text | Steven M. Gava | 2001-07-31 | 1 | -38/+4 |
| | | | | | until the new help system is implemented. Removed some commented cruft. | ||||
* | indentation style changed to match existing source | Steven M. Gava | 2001-07-31 | 2 | -174/+174 |
| | |||||
* | improve viewfile handling | Steven M. Gava | 2001-07-31 | 1 | -113/+118 |
| | | | | indentation style changed to match existing source | ||||
* | Add dead imports of modules that are "magically" imported. | Martin v. Löwis | 2001-07-31 | 2 | -0/+11 |
| | |||||
* | Remove obsolete entries from regen scripts. | Martin v. Löwis | 2001-07-31 | 14 | -40/+1 |
| | |||||
* | Initialize msg to avoid unbound locals. | Martin v. Löwis | 2001-07-31 | 5 | -0/+6 |
| | |||||
* | activate new about dialog for testing | Steven M. Gava | 2001-07-31 | 1 | -5/+7 |
| | |||||
* | removed redundant separate idlfefork ver | Steven M. Gava | 2001-07-31 | 1 | -2/+1 |
| | |||||
* | some new dialogs and support files for new about and configuration ↵ | Steven M. Gava | 2001-07-31 | 4 | -0/+365 |
| | | | | implementations | ||||
* | Amazing. This would open the sound file in text mode. Fixed. | Guido van Rossum | 2001-07-31 | 1 | -1/+1 |
| | | | | SF bug #446219. | ||||
* | test_codeup should not have had an expected-output file; removing it. | Tim Peters | 2001-07-30 | 1 | -10/+0 |
| | |||||
* | Add tests for getattr() and hasattr() with non-string args | Jeremy Hylton | 2001-07-30 | 2 | -0/+24 |
| | |||||
* | Get the whitespace right! | Fred Drake | 2001-07-30 | 1 | -3/+3 |
| | |||||
* | Fix for SF bug [ #443866 ] Evaluating func_code causing core dump | Jeremy Hylton | 2001-07-30 | 2 | -0/+14 |
| | | | | Add test that calls eval with a code object that has free variables. | ||||
* | Ugly fix used when pyexpat is not available. | Jeremy Hylton | 2001-07-30 | 1 | -0/+3 |
| | | | | | | | | | | If pyexpat is not available and more than one attempt is made to load an expat-based xml parser, an empty xml.parser.expat module will be created. This empty module will confuse xml.sax.expatreader into thinking that pyexpat is available. The ugly fix is to verify that the expat module actually defines the names that are imported from pyexpat. | ||||
* | Fix when pyexpat not built | Jeremy Hylton | 2001-07-30 | 1 | -0/+1 |
| | | | | | Import pyexpat first so that import error occurs when it is not available. | ||||
* | Patch #442866: Tests for codeop.py. | Martin v. Löwis | 2001-07-30 | 2 | -0/+100 |
| | |||||
* | Patch #445538: add completion for pstats.py sort cmd. | Martin v. Löwis | 2001-07-30 | 1 | -0/+2 |
| | |||||
* | Do convert_path() on script paths (now PyXML builds out of the box | Just van Rossum | 2001-07-29 | 1 | -0/+2 |
| | | | | under MacOS.) | ||||
* | Patch #443337: Fix incompatibilities in imputil's behavior. | Martin v. Löwis | 2001-07-28 | 1 | -1/+9 |
| | |||||
* | Remove usage of strop module. | Martin v. Löwis | 2001-07-28 | 1 | -5/+2 |
| | |||||
* | Patch #416224: add readline completion to cmd.Cmd. | Martin v. Löwis | 2001-07-28 | 2 | -15/+85 |
| | |||||
* | One more crack at join(): stop trying to pretend this isn't a mass of | Tim Peters | 2001-07-27 | 2 | -16/+47 |
| | | | | special cases. test_pkg works again on Windows. | ||||
* | Change ntpath.join() so that join("d:/", "/whatever") returns | Tim Peters | 2001-07-26 | 2 | -5/+7 |
| | | | | | | | d:/whatever instead of /whatever. While I'm afraid changing isabs() to be *consistent* with this would break lots of code, it makes best sense for join() to do it this way. Thanks to Alex Martelli for pushing back on this one! | ||||
* | SF bug #444510: int() should guarantee truncation. | Tim Peters | 2001-07-26 | 1 | -0/+13 |
| | | | | It's guaranteed now, assuming the platform modf() works correctly. | ||||
* | Add backwards compatibility. | Marc-André Lemburg | 2001-07-26 | 1 | -1/+6 |
| | |||||
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 3 | -13/+13 |
| | |||||
* | Untabify IPv6 changes. | Martin v. Löwis | 2001-07-26 | 5 | -126/+126 |
| | |||||
* | Fix a denial-of-service attack, SF bug #443120. | Guido van Rossum | 2001-07-25 | 1 | -4/+14 |
| | | | | Code by Evan Simpson. | ||||
* | Undo revision 1.7: always mangle a #! line containing "python" to point | Greg Ward | 2001-07-25 | 1 | -4/+2 |
| | | | | | | | | | | | | | | to the current Python interpreter (ie. the one used for building/installation), even (especially!) if "/usr/bin/env" appears in the #! line. Rationale: installing scripts with "#!/usr/bin/env python" is asking for trouble, because 1) it might pick the wrong interpreter (not the one used to build/install the script) 2) it doesn't work on all platforms (try it on IRIX 5, or on Linux with command-line options for python) 3) "env" might not be in /usr/bin | ||||
* | Don't "import *" from stat at all -- just import what's needed, and | Greg Ward | 2001-07-25 | 1 | -1/+1 |
| | | | | do it back in copy_file() (not at module level). | ||||
* | Fix for bug #444493: u'\U00010001' segfaults with current CVS on | Marc-André Lemburg | 2001-07-25 | 1 | -1/+2 |
| | | | | wide builds. | ||||
* | Remove unused imports from previous checkin. | Martin v. Löwis | 2001-07-25 | 1 | -2/+0 |
| | |||||
* | Patch #401196: Use getaddrinfo and AF_INET6 in TCP servers and clients. | Martin v. Löwis | 2001-07-24 | 7 | -49/+160 |
| | |||||
* | Oh, ok, so plainpager is probably marginally better. | Fred Drake | 2001-07-23 | 1 | -1/+1 |
| | |||||
* | If $TERM is "dumb" or "emacs", just dump the text instead of trying to run | Fred Drake | 2001-07-23 | 1 | -0/+2 |
| | | | | | | "less". Patch contributed by Alex Convertry. This closes SF patch #443551. | ||||
* | Make this test work under Windows as well. | Fred Drake | 2001-07-23 | 1 | -2/+5 |
| | |||||
* | Test for the "glob" module, contributed by Nick Mathewson. | Fred Drake | 2001-07-23 | 1 | -0/+110 |
| | | | | | Heavily modified so this doesn't break on Windows. This closes SF patch #441175. | ||||
* | Whitespace normalization. | Tim Peters | 2001-07-23 | 1 | -4/+3 |
| | | | | Note: This test fails on Windows. Don't know why yet. | ||||
* | Tests for the "commands" module, contributed by Nick Mathewson. | Fred Drake | 2001-07-23 | 1 | -0/+45 |
| | | | | This closes SF patch #440291. | ||||
* | New tests by Nick Mathewson, for the fpformat module. | Fred Drake | 2001-07-23 | 1 | -0/+67 |
| | | | | This closes SF patch #440290. | ||||
* | updated about info for 0.8.1 release | Steven M. Gava | 2001-07-21 | 1 | -3/+3 |
| | |||||
* | new material for 0.8.1 release | Steven M. Gava | 2001-07-21 | 2 | -9/+30 |
| | |||||
* | On WIndows, skip the part of test_dircache that can't work on Windows. | Tim Peters | 2001-07-21 | 1 | -9/+15 |
| | |||||
* | Whitespace normalization, plus: | Tim Peters | 2001-07-21 | 5 | -19/+19 |
| | | | | | | + test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix). | ||||
* | Make the add*() helper functions more robust for use after intialization | Fred Drake | 2001-07-20 | 1 | -6/+33 |
| | | | | | | | | is complete: recompute _dirs_in_sys_path each time these functions are entered after module initialization is complete, and reset before returning to user code. This closes SF patch #442983. | ||||
* | Patch #429442 from Jason Tishler: Corrects sys.platform and | Andrew M. Kuchling | 2001-07-20 | 1 | -0/+1 |
| | | | | | distutils.util.get_platform() problems caused by the cruft contained in Cygwin's uname -s. | ||||
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 8 | -8/+8 |
| | |||||
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -3/+3 |
| | | | | Work-around a font-lock bogosity. | ||||
* | Use string.ascii_letters instead of string.letters. | Fred Drake | 2001-07-20 | 1 | -2/+2 |
| | | | | Remove unused import. |