We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb85d33 commit 326cca2Copy full SHA for 326cca2
bpython/cli.py
@@ -64,10 +64,6 @@
64
from bpython.pager import page
65
import bpython.args
66
67
-def log(x):
68
- f = open('/tmp/bpython.log', 'a')
69
- f.write('%s\n' % (x,))
70
-
71
py3 = sys.version_info[0] == 3
72
if not py3:
73
import inspect
@@ -200,12 +196,6 @@ def readlines(self, size=-1):
200
196
#
201
197
202
198
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
209
199
def get_color(config, name):
210
return colors[config.color_scheme[name].lower()]
211
0 commit comments