6 lines
88 B
Python
6 lines
88 B
Python
def f(encoding=None):
|
|
print 'ENCODING:', encoding
|
|
|
|
from pudb import runcall
|
|
runcall(f)
|