Message240946
| Author |
morkov |
| Recipients |
BreamoreBoy, doko, ezio.melotti, michael.foord, morkov, pitrou, zach.ware |
| Date |
2015年04月14日.16:53:37 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1429030417.58.0.99202227914.issue17751@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
@Zachary - while that is doable, ctypes.macholib.dyld seems to be available in the dev version of 3.5.
>>> import ctypes.macholib.dyld
>>> ctypes.macholib.dyld.__file__
'/home/morkov/dev/cpython/Lib/ctypes/macholib/dyld.py'
>>> from ctypes.macholib.dyld import dyld_find
>>> dyld_find
<function dyld_find at 0x7fc36c558560>
The test itself is skipped correctly if I run on Linux.
/home/morkov/dev/cpython/python ./Lib/ctypes/test/test_macholib.py
s
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK (skipped=1) |
|