X Tutup
Skip to content

Commit 326cca2

Browse files
committed
Oktober Festen, remove unused functions
1 parent fb85d33 commit 326cca2

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

bpython/cli.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@
6464
from bpython.pager import page
6565
import bpython.args
6666

67-
def log(x):
68-
f = open('/tmp/bpython.log', 'a')
69-
f.write('%s\n' % (x,))
70-
7167
py3 = sys.version_info[0] == 3
7268
if not py3:
7369
import inspect
@@ -200,12 +196,6 @@ def readlines(self, size=-1):
200196
#
201197

202198

203-
def DEBUG(s):
204-
"""This shouldn't ever be called in any release of bpython, so
205-
beat me up if you find anything calling it."""
206-
open('/tmp/bpython-debug', 'a').write("%s\n" % (str(s), ))
207-
208-
209199
def get_color(config, name):
210200
return colors[config.color_scheme[name].lower()]
211201

0 commit comments

Comments
 (0)
X Tutup