[Pydev-cvs] org.python.pydev.debug/pysrc pydevd_file_utils.py, 1.4, 1.5
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-10 18:05:00
|
Update of /cvsroot/pydev/org.python.pydev.debug/pysrc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15736/pysrc Modified Files: pydevd_file_utils.py Log Message: Comments on pydevd_file_utils.py Index: pydevd_file_utils.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/pysrc/pydevd_file_utils.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pydevd_file_utils.py 6 Mar 2008 11:33:04 -0000 1.4 --- pydevd_file_utils.py 10 May 2008 17:55:33 -0000 1.5 *************** *** 1,8 **** ''' ! This module provides utilities to get the absolute filenames so that we can be sure that ! the case of a file will match the actual file in the filesystem (otherwise breakpoints won't be hit). ! ! It also provides means for the user to make path conversions when doing a remote debugging session in ! one machine and debugging in another. To do that, the PATHS_FROM_CLIENT_TO_SERVER constant must be filled with the appropriate paths. --- 1,7 ---- ''' ! This module provides utilities to get the absolute filenames so that we can be sure that: ! - The case of a file will match the actual file in the filesystem (otherwise breakpoints won't be hit). ! - Providing means for the user to make path conversions when doing a remote debugging session in ! one machine and debugging in another. To do that, the PATHS_FROM_CLIENT_TO_SERVER constant must be filled with the appropriate paths. *************** *** 32,37 **** @note: for doing a remote debugging session, all the pydevd_ files must be on the server accessible ! through the PYTHONPATH (and the PATHS_FROM_CLIENT_TO_SERVER only need to be set on the target ! machine as needed). ''' --- 31,36 ---- @note: for doing a remote debugging session, all the pydevd_ files must be on the server accessible ! through the PYTHONPATH (and the PATHS_FROM_CLIENT_TO_SERVER only needs to be set on the target ! machine for the paths that'll actually have breakpoints). ''' |