Re-applied commit 4afc82a328ce python
authorJulio C. Rocha <juniel_katarn@netbeans.org>
Wed, 04 Feb 2015 01:15:13 -0800
branchpython
changeset 18218a3a0cfa6c8ce
parent 18217 c96da258a0be
child 18219 806797e65aba
Re-applied commit 4afc82a328ce
python.debugger/src/org/netbeans/modules/python/debugger/resources/python/nbpythondebug/jpydaemon.py
python.testrunner/src/org/netbeans/modules/python/testrunner/Bundle.properties
     1.1 --- a/python.debugger/src/org/netbeans/modules/python/debugger/resources/python/nbpythondebug/jpydaemon.py	Mon Feb 02 23:29:37 2015 -0800
     1.2 +++ b/python.debugger/src/org/netbeans/modules/python/debugger/resources/python/nbpythondebug/jpydaemon.py	Wed Feb 04 01:15:13 2015 -0800
     1.3 @@ -1483,8 +1483,9 @@
     1.4              self.cmd = FREEZE
     1.5          elif ( string.upper(verb) == "BP-"):
     1.6              self.cmd = CLEAR_BP
     1.7 -            arg , optarg = _utils.nextArg(arg) # split BP arguments
     1.8 -            self.clear_break( arg , int(optarg) )
     1.9 +            file , optarg = _utils.nextArg(arg)
    1.10 +            line , optarg = _utils.nextArg(optarg)
    1.11 +            self.clear_break( file, int(line) )
    1.12              self.cmd = FREEZE
    1.13          elif ( string.upper(verb) == "KILL"):
    1.14              self.cmd = QUIT
     2.1 --- a/python.testrunner/src/org/netbeans/modules/python/testrunner/Bundle.properties	Mon Feb 02 23:29:37 2015 -0800
     2.2 +++ b/python.testrunner/src/org/netbeans/modules/python/testrunner/Bundle.properties	Wed Feb 04 01:15:13 2015 -0800
     2.3 @@ -1,1 +1,1 @@
     2.4 -OpenIDE-Module-Name=PythonTestrunner
     2.5 +OpenIDE-Module-Name=Python Testrunner