contrib/import-checker.py
changeset 28400 a84fc98a8af5
parent 28330 f3fb24e36d61
child 28700 35ad5bcdeb7e
--- a/contrib/import-checker.py	Sat Feb 27 21:14:17 2016 -0800
+++ b/contrib/import-checker.py	Sat Feb 27 21:15:16 2016 -0800
@@ -495,10 +495,6 @@
     """Given some python source, verify that stdlib imports are done
     in separate statements from relative local module imports.
 
-    Observing this limitation is important as it works around an
-    annoying lib2to3 bug in relative import rewrites:
-    http://bugs.python.org/issue19510.
-
     >>> list(verify_stdlib_on_own_line(ast.parse('import sys, foo')))
     [('mixed imports\\n   stdlib:    sys\\n   relative:  foo', 1)]
     >>> list(verify_stdlib_on_own_line(ast.parse('import sys, os')))