Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0cf1d1e

Browse filesBrowse files
committed
comment out skipped methods and add autocomplete mode to docs
1 parent 8461f3c commit 0cf1d1e
Copy full SHA for 0cf1d1e

2 files changed

+6-2Lines changed: 6 additions & 2 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎bpython/test/test_repl.py‎

Copy file name to clipboardExpand all lines: bpython/test/test_repl.py
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ def test_append(self):
9696

9797
self.assertEqual(self.history.back(), 'print "foo\n"')
9898

99-
@unittest.skip("currently fails")
10099
def test_enter(self):
101100
self.history.enter('#lastnumber!')
102101

@@ -210,7 +209,6 @@ def test_lambda_position(self):
210209
# Argument position
211210
self.assertEqual(self.repl.argspec[3], 1)
212211

213-
@unittest.skip('currently fails')
214212
def test_name_in_assignment_without_spaces(self):
215213
# Issue #127
216214
self.setInputLine("x=range(")
Collapse file

‎doc/sphinx/source/configuration.rst‎

Copy file name to clipboardExpand all lines: doc/sphinx/source/configuration.rst
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ auto_display_list
2020
Display the autocomplete list as you type (default: True).
2121
When this is off, you can hit tab to see the suggestions.
2222

23+
autocomplete_mode
24+
^^^^^^^^^^^^^^^^^
25+
There are three modes for autocomplete. Simple (1), Substring (2), and Fuzzy (3).
26+
Simple matches methods with a common prefix, substring matches methods with a common
27+
subsequence, and fuzzy matches methods with common characters (default: 2).
28+
2329
syntax
2430
^^^^^^
2531
Syntax highlighting as you type (default: True).

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.