文件操作 - __init__.cpython-311.pyc
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/pythran/__pycache__/__init__.cpython-311.pyc
编辑文件内容
� cR�a� � �n � d Z ddlZddlmZ ddlmZmZmZm Z m Z mZ ddlm Z ddlmZ ddlmZ ddlmZ dS ) a, This package provides several entry points * spec_parser looks for code annotations in the form of formatted comments * functions defined in toolchain.py: * generate_cxx: python (str) to c++ code, returns a PythonModule * compile_cxxfile: c++ (file) to DLL, returns DLL filename * compile_cxxcode: c++ (str) to DLL, returns DLL filename * compile_pythrancode: python (str) to so/cpp, returns output filename * compile_pythranfile: python (file) to so/cpp, returns output filename * test_compile: passthrough compile test, raises CompileError Exception. Basic scenario is to turn a Python AST into C++ code: >>> code = "def foo(x): return x * 2" >>> cxx_generator, error_checker = generate_cxx('my_module', code) >>> cxx = cxx_generator.generate() To generate a native module, one need to add type information: >>> cxx = generate_cxx('my_module', code, {'foo':([int],)}) Eventually, the type information can be translated from a string: >>> spec = spec_parser('#pythran export foo(int)') >>> cxx = generate_cxx('my_module', code, spec) Higher level entry points include: >>> export = '#pythran export foo(int)\n' >>> with open('my_module.py', 'w') as fd: ... _ = fd.write(export + code) >>> dll_file = compile_pythranfile("my_module.py") >>> cpp_file = compile_pythranfile("my_module.py",cpponly=True) >>> dll_file = compile_pythrancode("my_module", export + code) >>> dll_file = compile_cxxfile("my_module", cpp_file) Cleanup >>> import os, glob >>> for target in glob.glob('my_module.*'): ... os.remove(target) � N)�get_include)�generate_cxx�compile_cxxfile�compile_cxxcode�compile_pythrancode�compile_pythranfile�test_compile)�spec_parser)� load_specfile)�PythranExtension)�__version__)�__doc__�pythran.log�pythran�pythran.configr �pythran.toolchainr r r r r r �pythran.specr r �pythran.distr �pythran.versionr � � �2/usr/lib/python3/dist-packages/pythran/__init__.py�<module>r s� ��%� %�N � � � � &� &� &� &� &� &�-� -� -� -� -� -� -� -� -� -� -� -� -� -� -� -� %� $� $� $� $� $� &� &� &� &� &� &� )� )� )� )� )� )� '� '� '� '� '� '� '� 'r
修改文件时间
将文件时间修改为当前时间的前一年
删除文件