Revert -r82559; it's not clear that this is the right thing to do, and the change obscures the original intentions.
This commit is contained in:
parent
30b570bb4b
commit
45a26b9b18
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- coding: iso-8859-1 -*-
|
||||||
"""A lexical analyzer class for simple shell-like syntaxes."""
|
"""A lexical analyzer class for simple shell-like syntaxes."""
|
||||||
|
|
||||||
# Module and documentation by Eric S. Raymond, 21 Dec 1998
|
# Module and documentation by Eric S. Raymond, 21 Dec 1998
|
||||||
|
@ -34,8 +35,8 @@ class shlex:
|
||||||
self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
|
self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
|
||||||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_')
|
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_')
|
||||||
if self.posix:
|
if self.posix:
|
||||||
self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
|
self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
|
||||||
'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ')
|
'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ')
|
||||||
self.whitespace = ' \t\r\n'
|
self.whitespace = ' \t\r\n'
|
||||||
self.whitespace_split = False
|
self.whitespace_split = False
|
||||||
self.quotes = '\'"'
|
self.quotes = '\'"'
|
||||||
|
|
Loading…
Reference in New Issue