##// END OF EJS Templates
sslutil: synchronize hostname matching logic with CPython...
sslutil: synchronize hostname matching logic with CPython sslutil contains its own hostname matching logic. CPython has code for the same intent. However, it is only available to Python 2.7.9+ (or distributions that have backported 2.7.9's ssl module improvements). This patch effectively imports CPython's hostname matching code from its ssl.py into sslutil.py. The hostname matching code itself is pretty similar. However, the DNS name matching code is much more robust and spec conformant. As the test changes show, this changes some behavior around wildcard handling and IDNA matching. The new behavior allows wildcards in the middle of words (e.g. 'f*.com' matches 'foo.com') This is spec compliant according to RFC 6125 Section 6.5.3 item 3. There is one test where the matcher is more strict. Before, '*.a.com' matched '.a.com'. Now it doesn't match. Strictly speaking this is a security vulnerability.

File last commit:

r28724:cf339d6a default
r29452:26a5d605 3.8.4 stable
Show More
filterpyflakes.py
61 lines | 1.8 KiB | text/x-python | PythonLexer
/ tests / filterpyflakes.py
timeless
tests: add pyflakes checking for unused imports
r14140 #!/usr/bin/env python
# Filter output by pyflakes to control which warnings we check
Robert Stanca
py3: use print_function in filterpyflakes.py
r28724 from __future__ import absolute_import, print_function
Gregory Szorc
tests/filterpyflakes: use absolute_import
r27285
import re
import sys
timeless
tests: add pyflakes checking for unused imports
r14140
Simon Heimberg
tests: simplify and document the sorting of pyflake messages...
r19335 def makekey(typeandline):
"""
for sorting lines by: msgtype, path/to/file, lineno, message
typeandline is a sequence of a message type and the entire message line
the message line format is path/to/file:line: message
>>> makekey((3, 'example.py:36: any message'))
(3, 'example.py', 36, ' any message')
>>> makekey((7, 'path/to/file.py:68: dummy message'))
(7, 'path/to/file.py', 68, ' dummy message')
>>> makekey((2, 'fn:88: m')) > makekey((2, 'fn:9: m'))
True
"""
msgtype, line = typeandline
fname, line, message = line.split(":", 2)
# line as int for ordering 9 before 88
return msgtype, fname, int(line), message
timeless
test-pyflake: improve sorting algorithm
r14173
lines = []
timeless
tests: add pyflakes checking for unused imports
r14140 for line in sys.stdin:
Simon Heimberg
tests: simplify and document the sorting of pyflake messages...
r19335 # We whitelist tests (see more messages in pyflakes.messages)
timeless
tests: add pyflakes checking for assigned to but never used
r14175 pats = [
FUJIWARA Katsunori
tests: ignore "undefined name 'memoryview'" pyflakes error on earlier Python...
r21271 (r"imported but unused", None),
(r"local variable '.*' is assigned to but never used", None),
(r"unable to detect undefined names", None),
Matt Mackall
filterpyflakes: make memoryview filtering unconditional
r21293 (r"undefined name '.*'",
Matt Mackall
filterpyflakes: filter WindowsError unconditionally
r21294 r"undefined name '(WindowsError|memoryview)'")
timeless
tests: add pyflakes checking for assigned to but never used
r14175 ]
Matt Mackall
filterpyflakes: make memoryview filtering unconditional
r21293
FUJIWARA Katsunori
tests: ignore "undefined name 'memoryview'" pyflakes error on earlier Python...
r21271 for msgtype, (pat, excl) in enumerate(pats):
if re.search(pat, line) and (not excl or not re.search(excl, line)):
Simon Heimberg
tests: simplify and document the sorting of pyflake messages...
r19335 break # pattern matches
else:
continue # no pattern matched, next line
Augie Fackler
pyflakes: ignore files marked no-check-code
r14209 fn = line.split(':', 1)[0]
FUJIWARA Katsunori
tests: make filterpyflakes.py read target files relatively to cwd...
r26023 f = open(fn)
Augie Fackler
pyflakes: ignore files marked no-check-code
r14209 data = f.read()
f.close()
Simon Heimberg
tests: do not skip code-checking on some whole files...
r19381 if 'no-' 'check-code' in data:
Augie Fackler
pyflakes: ignore files marked no-check-code
r14209 continue
Simon Heimberg
tests: simplify and document the sorting of pyflake messages...
r19335 lines.append((msgtype, line))
timeless
test-pyflake: improve sorting algorithm
r14173
Mads Kiilerich
check-code: check for spaces around = for named parameters
r19872 for msgtype, line in sorted(lines, key=makekey):
timeless
tests: add pyflakes checking for unused imports
r14140 sys.stdout.write(line)
Robert Stanca
py3: use print_function in filterpyflakes.py
r28724 print()
FUJIWARA Katsunori
tests: ignore "undefined name 'memoryview'" pyflakes error on earlier Python...
r21271
# self test of "undefined name" detection for other than 'memoryview'
if False:
Robert Stanca
py3: use print_function in filterpyflakes.py
r28724 print(undefinedname)