X Tutup
Skip to content

Commit e5a3259

Browse files
committed
Update python default configs
1 parent a05d77f commit e5a3259

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pymode/libs2/rope/base/default_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def set_prefs(prefs):
2020
# useful when you have scripts inside your project. Only files
2121
# ending with ``.py`` are considered to be python files by
2222
# default.
23-
#prefs['python_files'] = ['*.py']
23+
# prefs['python_files'] = ['*.py']
2424

2525
# Custom source folders: By default rope searches the project
2626
# for finding source folders (folders that should be searched
@@ -30,10 +30,10 @@ def set_prefs(prefs):
3030
# The folders should be relative to project root and use '/' for
3131
# separating folders regardless of the platform rope is running on.
3232
# 'src/my_source_folder' for instance.
33-
#prefs.add('source_folders', 'src')
33+
# prefs.add('source_folders', 'src')
3434

3535
# You can extend python path for looking up modules
36-
#prefs.add('python_path', '~/python/')
36+
# prefs.add('python_path', '~/python/')
3737

3838
# Should rope save object information or not.
3939
prefs['save_objectdb'] = True

pymode/libs3/rope/base/default_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ def set_prefs(prefs):
1414
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
1515
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
1616
prefs['ignored_resources'] = ['*.pyc', '*~', '.ropeproject',
17-
'.hg', '.svn', '_svn', '.git',
17+
'.hg', '.svn', '_svn', '.git',
1818
'__pycache__']
1919

2020
# Specifies which files should be considered python files. It is
2121
# useful when you have scripts inside your project. Only files
2222
# ending with ``.py`` are considered to be python files by
2323
# default.
24-
#prefs['python_files'] = ['*.py']
24+
# prefs['python_files'] = ['*.py']
2525

2626
# Custom source folders: By default rope searches the project
2727
# for finding source folders (folders that should be searched
@@ -31,10 +31,10 @@ def set_prefs(prefs):
3131
# The folders should be relative to project root and use '/' for
3232
# separating folders regardless of the platform rope is running on.
3333
# 'src/my_source_folder' for instance.
34-
#prefs.add('source_folders', 'src')
34+
# prefs.add('source_folders', 'src')
3535

3636
# You can extend python path for looking up modules
37-
#prefs.add('python_path', '~/python/')
37+
# prefs.add('python_path', '~/python/')
3838

3939
# Should rope save object information or not.
4040
prefs['save_objectdb'] = True

0 commit comments

Comments
 (0)
X Tutup