Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix parameter passing. | Georg Brandl | 2007-05-24 | 1 | -1/+1 |
| | |||||
* | shlex.split() now has an optional "posix" parameter. | Georg Brandl | 2007-05-24 | 1 | -2/+2 |
| | |||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -4/+4 |
| | | | | From SF patch #852334. | ||||
* | * Move collections.deque() in from the sandbox | Raymond Hettinger | 2004-01-29 | 1 | -8/+8 |
| | | | | | | * Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming | ||||
* | - Changed shlex.split() method to have more useful and | Gustavo Niemeyer | 2003-04-20 | 1 | -3/+5 |
| | | | | meaningful parameters. | ||||
* | Use True in a few more places. | Neal Norwitz | 2003-04-17 | 1 | -7/+5 |
| | | | | Use isinstance(somestring, basestring) instead of type() as per PEP 8 | ||||
* | - use Tue/False for booleans | Fred Drake | 2003-04-17 | 1 | -9/+8 |
| | | | | - some very minor cleanups | ||||
* | Implemented posix-mode parsing support in shlex.py, as dicussed in | Gustavo Niemeyer | 2003-04-17 | 1 | -24/+108 |
| | | | | mailing list, and in patch #722686. | ||||
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-02 | 1 | -4/+4 |
| | |||||
* | Unused variable (caught by PyChecker) removed. | Eric S. Raymond | 2001-04-17 | 1 | -1/+0 |
| | |||||
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+2 |
| | | | | | | also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance) | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-17 | 1 | -7/+7 |
| | |||||
* | Make pop_source and push_source available, as documented. | Eric S. Raymond | 2001-01-16 | 1 | -23/+36 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-01-15 | 1 | -4/+4 |
| | |||||
* | Patch #102953: Fix bug #125452, where shlex.shlex hangs when it | Andrew M. Kuchling | 2001-01-09 | 1 | -0/+5 |
| | | | | | encounters a string with an unmatched quote, by adding a check for EOF in the 'quotes' state. | ||||
* | Remove superfluous semicolons | Andrew M. Kuchling | 2000-12-23 | 1 | -6/+6 |
| | |||||
* | Make tabnanny happy. | Fred Drake | 2000-07-09 | 1 | -11/+12 |
| | | | | mailbox.py: Convert to 4-space indents. | ||||
* | Eric S. Raymond <esr@thyrsus.com>: | Fred Drake | 2000-07-03 | 1 | -9/+21 |
| | | | | | | | | | This patch implements relative-path semantics for the "source" facility resembling those of cpp(1), documents the change, and improves the shlex test main to make it easier to test this feature. Along the way, it fixes a name error in the existing docs. [Additional documentation markup changes for consistency by FLD.] | ||||
* | Eric Raymond: | Guido van Rossum | 2000-05-01 | 1 | -0/+8 |
| | | | | Add a convenience function to generate C-compiler style error leaders. | ||||
* | Eric Raymond: | Guido van Rossum | 2000-05-01 | 1 | -17/+66 |
| | | | | | | | | | | | | Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. [GvR: I changed the __main__ code so that it actually stops at EOF, as Eric surely intended -- however it returned '' instead of the None he was testing for.] | ||||
* | The third and final doc-string sweep by Ka-Ping Yee. | Guido van Rossum | 2000-02-04 | 1 | -0/+2 |
| | | | | | | | | The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac. | ||||
* | No need to import os or string. (Andrew Dalke & kjpylint) | Guido van Rossum | 1999-05-03 | 1 | -1/+1 |
| | |||||
* | Get rid of #! line | Guido van Rossum | 1999-04-09 | 1 | -1/+0 |
| | |||||
* | Bug reported by Tobias Thelen: missing "self." in assignment target. | Guido van Rossum | 1999-03-22 | 1 | -1/+1 |
| | |||||
* | Adding shlex and netrc by Eric Raymond. | Guido van Rossum | 1998-12-22 | 1 | -0/+119 |