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)166 elif nextchar in self.wordchars:252 elif (nextchar in self.wordchars or nextchar in self.quotes
38 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"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""
30 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand98 while i > 0 and line[i-1] in self.wordchars:
20 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand89 while i > 0 and line[i-1] in self.wordchars:
131 characters in the :attr:`wordchars` attribute that appear in132 *punctuation_chars* will be removed from :attr:`wordchars`. See238 .. attribute:: shlex.wordchars246 ``punctuation_chars`` will be removed from ``wordchars`` if they are present445 .. note:: When ``punctuation_chars`` is specified, the :attr:`~shlex.wordchars`459 :attr:`~shlex.wordchars` entirely.
279 self.assertNotIn('_', s.wordchars)
171 .. attribute:: shlex.wordchars