https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=227939
--- Comment #2 from Jan Beich <jbe...@freebsd.org> --- (In reply to Jan Beich from comment #1) > lang/python35 > lang/python36 This is not a typo: $ pkg install python36 $ python3.6 Python 3.6.5 (default, Apr 4 2018, 12:24:22) [GCC 4.2.1 Compatible FreeBSD Clang 4.0.0 (tags/RELEASE_400/final 297347)] on freebsd11 Type "help", "copyright", "credits" or "license" for more information. >>> from ctypes.util import find_library >>> find_library("python3.6m") >>> vs. $ pkg install python27 $ python2.7 Python 2.7.14 (default, Dec 19 2017, 15:01:12) [GCC 4.2.1 Compatible FreeBSD Clang 4.0.0 (tags/RELEASE_400/final 297347)] on freebsd11 Type "help", "copyright", "credits" or "license" for more information. >>> from ctypes.util import find_library >>> find_library("python2.7") 'libpython2.7.so.1' >>> -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ freebsd-python@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"