This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Arfrever, barry, brett.cannon, eric.snow, lemburg, ncoghlan, ned.deily, pitrou, steve.dower, tim.golden, vstinner, zach.ware
Date 2014-12-02.17:59:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417543177.08.0.91091428863.issue22980@psf.upfronthosting.co.za>
In-reply-to
Content
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']
History
Date User Action Args
2014-12-02 17:59:37pitrousetrecipients: + pitrou, lemburg, barry, brett.cannon, ncoghlan, vstinner, tim.golden, ned.deily, Arfrever, eric.snow, zach.ware, steve.dower
2014-12-02 17:59:37pitrousetmessageid: <1417543177.08.0.91091428863.issue22980@psf.upfronthosting.co.za>
2014-12-02 17:59:37pitroulinkissue22980 messages
2014-12-02 17:59:36pitroucreate