Bump version. Add API difference remark.
This commit is contained in:
parent
e775b3937c
commit
d5e9be0ee0
@ -1,4 +1,4 @@
|
||||
NUM_VERSION = (0, 92, 10)
|
||||
NUM_VERSION = (0, 92, 11)
|
||||
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
|
||||
|
||||
|
||||
@ -92,7 +92,7 @@ def runscript(mainpyfile, args=None, pre_run="", steal_output=False):
|
||||
|
||||
sys.path = prev_sys_path
|
||||
|
||||
def run_statement(statement, globals=None, locals=None):
|
||||
def runstatement(statement, globals=None, locals=None):
|
||||
_get_debugger().run(statement, globals, locals)
|
||||
|
||||
def runeval(expression, globals=None, locals=None):
|
||||
|
3
setup.py
3
setup.py
@ -90,7 +90,8 @@ setup(name='pudb',
|
||||
|
||||
At the programming language level, PuDB displays the same interface
|
||||
as Python's built-in `pdb module <http://docs.python.org/library/pdb.html>`_.
|
||||
Just replace `pdb` with `pudb`.
|
||||
Just replace `pdb` with `pudb`.
|
||||
(One exception: `run` is called `runstatement`.)
|
||||
|
||||
License and Dependencies
|
||||
------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user