Skip to content

Commit 2e63c61

Browse files
committed
small fixes
1 parent e08752c commit 2e63c61

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

README

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ Dependencies
66
Pygments
77
(apt-get install python-pygments)
88

9-
Mock
10-
(pip install mock`)
11-
129
Introduction
1310
============
1411
A few people asked for stuff like syntax highlighting

bpython/test/test_repl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ def setup_config(conf):
1010
config.loadini(config_struct, os.devnull)
1111
if 'autocomplete_mode' in conf:
1212
config_struct.autocomplete_mode = conf['autocomplete_mode']
13-
print config_struct
1413
return config_struct
1514

1615
class FakeHistory(repl.History):
@@ -485,7 +484,6 @@ def test_fuzzy_attribute_tab_complete(self):
485484

486485
self.repl.tab()
487486
self.assertEqual(self.repl.s, "Foo.foobar")
488-
print self.repl.s
489487

490488
def test_fuzzy_attribute_tab_complete2(self):
491489
"""Test fuzzy attribute with some text"""

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,9 @@ def initialize_options(self):
114114
long_description = """bpython is a fancy interface to the Python
115115
interpreter for Unix-like operating systems.""",
116116
install_requires = [
117-
'pygments', 'mock'
117+
'pygments'
118118
],
119+
tests_require = ['mock'],
119120
packages = ["bpython", "bpython.translations", "bpdb"],
120121
data_files = data_files,
121122
package_data = {

0 commit comments

Comments
 (0)