Message232033
Nothing new should be necessary for pyc files under Windows:
Python 3.4.2 |Continuum Analytics, Inc.| (default, Oct 22 2014, 11:51:45) [MSC v.1600 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.implementation.cache_tag
'cpython-34'
The problem is with C extensions:
>>> import _imp
>>> _imp.extension_suffixes()
['.pyd']
Compare with Linux:
>>> import _imp
>>> _imp.extension_suffixes()
['.cpython-35dm.so', '.abi3.so', '.so'] |
|
Date |
User |
Action |
Args |
2014-12-02 17:59:37 | pitrou | set | recipients:
+ pitrou, lemburg, barry, brett.cannon, ncoghlan, vstinner, tim.golden, ned.deily, Arfrever, eric.snow, zach.ware, steve.dower |
2014-12-02 17:59:37 | pitrou | set | messageid: <1417543177.08.0.91091428863.issue22980@psf.upfronthosting.co.za> |
2014-12-02 17:59:37 | pitrou | link | issue22980 messages |
2014-12-02 17:59:36 | pitrou | create | |
|