13 matches across 1 files for error lang:Python lang:Python lang:Python path:src/etc/htmldocck.py
snippet_mode: grep · sorted by relevance
src/etc/htmldocck.py PYTHON 13 matches · showing 5 view file →
20try:
21 from html.parser import HTMLParser
22except ImportError:
23 from HTMLParser import HTMLParser
24try:
· · ·
25 from xml.etree import cElementTree as ET
26except ImportError:
27 from xml.etree import ElementTree as ET
28
· · ·
29try:
30 from html.entities import name2codepoint
31except ImportError:
32 from htmlentitydefs import name2codepoint
33
· · ·
55try:
56 unichr # noqa: B018 FIXME: py2
57except NameError:
58 unichr = chr
59
· · ·
183 try:
184 args = shlex.split(args)
185 except UnicodeEncodeError:
186 args = [
187 arg.decode("utf-8") for arg in shlex.split(args.encode("utf-8"))
+ 8 more matches in this file
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.