This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: shlex refactoring
Type: performance Stage: patch review
Components: Library (Lib) Versions: Python 3.3
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: eric.araujo, ezio.melotti, ferringb, mhammond
Priority: normal Keywords: needs review, patch

Created on 2009-12-29 08:07 by ferringb, last changed 2022-04-11 14:56 by admin.

Files
File name Uploaded Description Edit
shlex-py2.6.4-20091229.patch ferringb, 2009-12-29 08:07 shlex-py2.6.4 refactoring
Messages (3)
msg96987 - (view) Author: Ferringb (ferringb) * Date: 2009-12-29 08:07
Currently, shlex.shlex's internal read_token is a bit of a nasty mess to
follow and pretty poorly performant.

The refactoring I'll be attaching essentially inverts the state machine
approach read_token uses- instead, converting it over to a more
procedural set of loops.  The benefits of this is that it's far, far
easier to track what the code is actually doing and the performance goes
up fairly drastically via tightening the various for loops (for example,
if doing quoting, you only care about escapes and the terminating quote-
thus a loop there).

End result, the refactored code actually has whitespace in it and still
is shorter- specifically the tokenenizer was converted into a generator
to preserve state internally, thus simplifying the code flow immensely.

Beyond that, this should still be api compatible... and is 2x faster,
passing tests.

Note this patch is cut against 2.6.4; assuming folks are happy w/ the
general approach, I'll rebase it to py3k trunk.

From there, I'd be willing to tackle the other shlex issues where
applicable, but personally... not w/out the refactoring base, since that
state machine is a pita to trace out.
msg96988 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2009-12-29 08:39
Thanks for the patch.

Three minor things:
1) the source contains non-ASCII chars and an encoding declaration at
the beginning of the file. PEP8 says that "using \x, \u or \U escapes is
the preferred way to include non-ASCII data in string literals", so I
would use \x escapes and remove the encoding declaration;
2) the class "stream_source" should be named "StreamSource" unless there
are compatibility or consistency issues;
3) patches should be done against trunk first (your patch applies fine
on trunk too and the tests pass), they will then be ported to py3k.
msg105118 - (view) Author: Mark Hammond (mhammond) * (Python committer) Date: 2010-05-06 00:56
I tried to use this in place of shlex for parsing IMAP responses for the 'imapclient' package.  A couple of things struck me.

* The class no longer has a next() method but probably should be added for b/w compat.

* The class no longer has a 'token' attribute, which people may use to record the current token.  Sadly it isn't clear if this is a documented part of the API or not.

* Typo:
    wordchards = property(_get_wordchars, _set_wordchars)

  'wordchards' is wrong.  This implies there are no tests which set wordchars.

* I *think* the lexer is now returning an empty string token as an input source is rolled over whereas before it did not.  In effect, I *think* the old lexer would allow a single token to span sources, where this patched version does not.  Sadly I didn't confirm this is truly accurate - but tests for this behaviour would probably help.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51843
2011-06-14 16:03:49eric.araujosetnosy: + eric.araujo

versions: + Python 3.3, - Python 2.6, Python 3.1, Python 2.7, Python 3.2
2010-05-06 00:56:37mhammondsetnosy: + mhammond
messages: + msg105118
2009-12-29 08:39:19ezio.melottisetpriority: normal

versions: + Python 3.1
keywords: + needs review
nosy: + ezio.melotti

messages: + msg96988
stage: patch review
2009-12-29 08:07:40ferringbcreate