##// END OF EJS Templates
Add docstring for core.debugger.Pdb
Terry Davis -
Show More
@@ -205,6 +205,18 b' class Pdb(OldPdb):'
205
205
206 def __init__(self, color_scheme=None, completekey=None,
206 def __init__(self, color_scheme=None, completekey=None,
207 stdin=None, stdout=None, context=5, **kwargs):
207 stdin=None, stdout=None, context=5, **kwargs):
208 """Create a new IPython debugger.
209
210 :param color_scheme: Deprecated, do not use.
211 :param completekey: Passed to pdb.Pdb.
212 :param stdin: Passed to pdb.Pdb.
213 :param stdout: Passed to pdb.Pdb.
214 :param context: Number of lines of source code context to show when
215 displaying stacktrace information.
216 :param kwargs: Passed to pdb.Pdb.
217 The possibilities are python version dependent, see the python
218 docs for more info.
219 """
208
220
209 # Parent constructor:
221 # Parent constructor:
210 try:
222 try:
General Comments 0
You need to be logged in to leave comments. Login now