This repository was archived by the owner on Aug 5, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed
Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ install:
2727 - java -XshowSettings:properties -version
2828 - call %JPY_PYTHON_HOME%\Scripts\pip.exe install wheel
2929 - call %JPY_PYTHON_HOME%\Scripts\pip.exe install psutil
30+ - call %JPY_PYTHON_HOME%\python.exe ci\appveyor\dump-dlls.py
3031
3132build_script :
3233 - set PATH=%JPY_PYTHON_HOME%;%JPY_PYTHON_HOME%\DLLs;%PATH%
Original file line number Diff line number Diff line change 1+ import psutil , os
2+
3+ p = psutil .Process (os .getpid ())
4+ for dll in p .memory_maps ():
5+ print (dll .path )
6+
Original file line number Diff line number Diff line change 4343
4444print ('Using ' + jpyutil .__file__ )
4545
46- # ======================================================================
47- # e.g. finding the shared libs (dll/so) our python process loaded so far ...
48-
49- import psutil , os
50-
51- p = psutil .Process (os .getpid ())
52- for dll in p .memory_maps ():
53- print (dll .path )
54-
55- # ======================================================================
56-
5746do_maven = False
5847if '--maven' in sys .argv :
5948 do_maven = True
You can’t perform that action at this time.
0 commit comments