Home
last modified time | relevance | path

Searched refs:wordchars (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Lib/
Dshlex.py37 self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
40 self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
63 self.wordchars += '~-./*?='
65 t = self.wordchars.maketrans(dict.fromkeys(punctuation_chars))
66 self.wordchars = self.wordchars.translate(t)
162 elif nextchar in self.wordchars:
248 elif (nextchar in self.wordchars or nextchar in self.quotes
Dnetrc.py34 lexer.wordchars += r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
/external/python/cpython2/Lib/
Dshlex.py38 self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
41 self.wordchars += ('��������������������������������'
150 elif nextchar in self.wordchars:
225 elif nextchar in self.wordchars or nextchar in self.quotes \
Dnetrc.py39 lexer.wordchars += r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
/external/python/cpython3/Lib/idlelib/
Dautoexpand.py20 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand
89 while i > 0 and line[i-1] in self.wordchars:
/external/python/cpython2/Lib/idlelib/
DAutoExpand.py30 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand
98 while i > 0 and line[i-1] in self.wordchars:
/external/python/cpython3/Doc/library/
Dshlex.rst99 characters in the :attr:`wordchars` attribute that appear in
100 *punctuation_chars* will be removed from :attr:`wordchars`. See
204 .. attribute:: shlex.wordchars
212 ``punctuation_chars`` will be removed from ``wordchars`` if they are present
405 .. note:: When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars`
/external/python/cpython3/Lib/test/
Dtest_shlex.py261 self.assertNotIn('_', s.wordchars)
/external/python/cpython2/Doc/library/
Dshlex.rst171 .. attribute:: shlex.wordchars