mirror of https://github.com/python/cpython.git
gh-97639: Remove `tokenize.NL` check from `tabnanny` (#97640)
* gh-97639: Remove `tokenize.NL` check from `tabnanny` * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
This commit is contained in:
parent
72b5a55bc8
commit
06016845dc
|
@ -23,8 +23,6 @@
|
|||
import os
|
||||
import sys
|
||||
import tokenize
|
||||
if not hasattr(tokenize, 'NL'):
|
||||
raise ValueError("tokenize.NL doesn't exist -- tokenize module too old")
|
||||
|
||||
__all__ = ["check", "NannyNag", "process_tokens"]
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Remove ``tokenize.NL`` check from :mod:`tabnanny`.
|
Loading…
Reference in New Issue