Skip to content
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

Remove python3 profile #1603

Merged
merged 2 commits into from Apr 15, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 0 additions & 11 deletions IPython/config/profile/python3/ipython_config.py

This file was deleted.

2 changes: 1 addition & 1 deletion IPython/core/profileapp.py
Expand Up @@ -110,7 +110,7 @@ def list_bundled_profiles():
profiles = []
for profile in files:
full_path = os.path.join(path, profile)
if os.path.isdir(full_path):
if os.path.isdir(full_path) and profile != "__pycache__":
profiles.append(profile)
return profiles

Expand Down
2 changes: 1 addition & 1 deletion IPython/core/tests/test_profile.py
Expand Up @@ -146,6 +146,6 @@ def test_list_profiles_in():

def test_list_bundled_profiles():
# This variable will need to be updated when a new profile gets bundled
bundled_true = [u'cluster', u'math', u'pysh', u'python3', u'sympy']
bundled_true = [u'cluster', u'math', u'pysh', u'sympy']
bundled = sorted(list_bundled_profiles())
nt.assert_equals(bundled, bundled_true)