Skip to content

POC: make core.config self-contained #25176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
remove unused PY3
  • Loading branch information
jbrockmendel committed Feb 7, 2019
commit 40ca99007ee5395c3dad614e07b97d3328501db1
2 changes: 0 additions & 2 deletions pandas/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@

try:
unicode
PY3 = False
except NameError:
unicode = str
PY3 = True

DeprecatedOption = namedtuple('DeprecatedOption', 'key msg rkey removal_ver')
RegisteredOption = namedtuple('RegisteredOption',
Expand Down