ytrstu / winpdb

Automatically exported from code.google.com/p/winpdb
0 stars 0 forks source link

Incompatibility Python 2.5 #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install Python 2.5
2. Launch winpdb

What is the expected output? What do you see instead?

  File "c:\winpdb-1.4.8\rpdb2.py", line 14499, in <module>
    ret = rpdb2.main()
  File "c:\coding\Python25\lib\site-packages\rpdb2.py", line 14470, in main
    StartServer(_rpdb2_args, fchdir, _rpdb2_pwd, fAllowUnencrypted, fAllowRemote
, secret)
  File "c:\coding\Python25\lib\site-packages\rpdb2.py", line 14220, in StartServ
er
    imp.load_source('__main__', _path)
  File "c:\coding\sugar\devcenter\atmake.py", line 136
    except (KeyboardInterrupt, IOError) as e :

What version of the product are you using? On what operating system?
Winpdb 1.4.8 on Windows Vista

Please provide any additional information below.
Incompatible with Python 2.5

Original issue reported on code.google.com by nassim.b...@gmail.com on 17 May 2011 at 7:42

GoogleCodeExporter commented 9 years ago
The last line of the traceback indicates the error was not in the Winpdb code 
but in the source file c:\coding\sugar\devcenter\atmake.py. The offending line

except (KeyboardInterrupt, IOError) as e :

Does not appear in any of the Winpdb code.

Original comment by chris.la...@gmail.com on 19 May 2011 at 8:08