Searched refs:wordchars (Results 1 – 9 of 9) sorted by relevance
37 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
34 lexer.wordchars += r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
38 self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'41 self.wordchars += ('��������������������������������'150 elif nextchar in self.wordchars:225 elif nextchar in self.wordchars or nextchar in self.quotes \
39 lexer.wordchars += r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
20 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand89 while i > 0 and line[i-1] in self.wordchars:
30 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand98 while i > 0 and line[i-1] in self.wordchars:
99 characters in the :attr:`wordchars` attribute that appear in100 *punctuation_chars* will be removed from :attr:`wordchars`. See204 .. attribute:: shlex.wordchars212 ``punctuation_chars`` will be removed from ``wordchars`` if they are present405 .. note:: When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars`
261 self.assertNotIn('_', s.wordchars)
171 .. attribute:: shlex.wordchars