| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 79b9e7b commit a387e8c
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,6 +16,8 @@ Some issues have been resolved as well: | |||
| 16 | 16 | which happens in some situations. See issue #94. | |
| 17 | 17 | * Non-ascii input should work now under Python 3. | |
| 18 | 18 | * Issue #165: C-a and C-e do the right thing now in urwid. | |
| 19 | + * The short command-line option "-c config" was dropped as it conflicts with | ||
| 20 | + vanilla Python's "-c command" option. See issue #186. | ||
| 19 | 21 | ||
| 20 | 22 | v0.9.7.1 | |
| 21 | 23 | -------- | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -58,7 +58,7 @@ def parse(args, extras=None, ignore_stdin=False): | |||
| 58 | 58 | # That's probably fixable though, for example by having that | |
| 59 | 59 | # option swallow all remaining arguments in a callback. | |
| 60 | 60 | parser.disable_interspersed_args() | |
| 61 | - parser.add_option('--config', '-c', default=default_config_path(), | ||
| 61 | + parser.add_option('--config', default=default_config_path(), | ||
| 62 | 62 | help='use CONFIG instead of default config file') | |
| 63 | 63 | parser.add_option('--interactive', '-i', action='store_true', | |
| 64 | 64 | help='Drop to bpython shell after running file ' | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | # This is a standard python config file | |
| 2 | 2 | # Valid values can be True, False, integer numbers, strings | |
| 3 | - # By default bpython will look for ~/.bpython/config or you can specify a file | ||
| 4 | - # with the -c option on the command line | ||
| 3 | + # By default bpython will look for ~/.config/bpython/config or you | ||
| 4 | + # can specify a file with the --config option on the command line | ||
| 5 | 5 | ||
| 6 | 6 | # General section tag | |
| 7 | 7 | [general] | |
| Back | FazBrowse Home | New Git URL |
0 commit comments