# iterator interface by Gustavo Niemeyer, April 2003.
# changes to tokenize more like Posix shells by Vinay Sajip, July 2016.
-import os
-import re
import sys
-from collections import deque
-
from io import StringIO
__all__ = ["shlex", "split", "quote", "join"]
"A lexical analyzer class for simple shell-like syntaxes."
def __init__(self, instream=None, infile=None, posix=False,
punctuation_chars=False):
+ from collections import deque # deferred import for performance
+
if isinstance(instream, str):
instream = StringIO(instream)
if instream is not None:
def sourcehook(self, newfile):
"Hook called on a filename to be sourced."
+ import os.path
if newfile[0] == '"':
newfile = newfile[1:-1]
# This implements cpp-like semantics for relative-path inclusion.
return ' '.join(quote(arg) for arg in split_command)
-_find_unsafe = re.compile(r'[^\w@%+=:,./-]', re.ASCII).search
-
def quote(s):
"""Return a shell-escaped version of the string *s*."""
if not s:
return "''"
- if _find_unsafe(s) is None:
+
+ # Use bytes.translate() for performance
+ safe_chars = (b'%+,-./0123456789:=@'
+ b'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'
+ b'abcdefghijklmnopqrstuvwxyz')
+ # No quoting is needed if `s` is an ASCII string consisting only of `safe_chars`
+ if s.isascii() and not s.encode().translate(None, delete=safe_chars):
return s
# use single quotes, and put single quotes into double quotes
import shlex
import string
import unittest
+from test.support import import_helper
# The original test data set was from shellwords, by Hartmut Goebel.
with self.assertRaises(AttributeError):
shlex_instance.punctuation_chars = False
+ def test_lazy_imports(self):
+ import_helper.ensure_lazy_imports('shlex', {'collections', 're', 'os'})
+
# Allow this test to be used with old shlex.py
if not getattr(shlex, "split", None):