On Monday, 12 August 2019 22:38:43 UTC-7, Matt Wilkie wrote:
>
> *(I hit [post] by mistake. Some of you may get a partial message before
> this full one)*
>
> I needed to change some things to get working in Windows. For the ignore
> list of system directories: reverse the inner and outer quotes, capture to
> text file. Edit path to use Win path separator instead of unix (replace
> `:c:` with `;c:` -- colon-C-colon with semi-colon-C-colon).
>
> python -c "import sys ; print(':'.join(sys.path)[1:])" > pdb-ignore.txt
>
>
> -matt
>
or, doh! use a different join() statement. Sheesh Matt!
python -c "import sys ; print(';'.join(sys.path)[1:])"
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/leo-editor/4e45ddb0-7257-47e6-b211-7b2fd40d7bb7%40googlegroups.com.