Home
last modified time | relevance | path

Searched refs:wordchars (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Lib/
H A Dshlex.py37 self.wordchars = ('abcdfeghijklmnopqrstuvwxyz'
40 self.wordchars += ('ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ'
63 self.wordchars += '~-./*?='
64 #remove any punctuation chars from 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
/third_party/python/Lib/idlelib/
H A Dautoexpand.py20 wordchars = string.ascii_letters + string.digits + "_" variable in AutoExpand
89 while i > 0 and line[i-1] in self.wordchars:
/third_party/python/Lib/test/
H A Dtest_shlex.py277 """Test that any punctuation chars are removed from wordchars"""
279 self.assertNotIn('_', s.wordchars)
322 # Without whitespace_split, uses wordchars and splits on all.

Completed in 2 milliseconds