翻訳と辞書
Words near each other
・ Cytharomorula vexillum
・ Cythera
・ Cythera (novel)
・ Cythera (video game)
・ Cythera (yacht)
・ Cytherea
・ Cytherea (actress)
・ Cytherea (film)
・ Cytherean
・ Cytherellidae
・ Cythioate
・ Cythna Letty
・ Cythnia
・ Cythnia albida
・ Cythnia asteriaphila
Cython
・ Cythraul
・ Cytidia
・ Cytidia salicina
・ Cytidine
・ Cytidine deaminase
・ Cytidine diphosphate
・ Cytidine diphosphate glucose
・ Cytidine monophosphate
・ Cytidine monophosphoacetylneuraminate-lactosylceramide sialyltransferase
・ Cytidine triphosphate
・ Cytidylate cyclase
・ Cytidylate kinase
・ Cytinaceae
・ Cytinium


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Cython : ウィキペディア英語版
Cython

The Cython programming language is a superset of Python with a foreign function interface for invoking C/C++ routines and the ability to declare the static type of subroutine parameters and results, local variables, and class attributes.〔(【引用サイトリンク】title=Cython - an overview — Cython 0.19.1 documentation )
== Overview ==
Cython is a compiled language that generates CPython extension modules. These extension modules can then be loaded and used by regular Python code using the import statement. Cython is written in Python and works on Windows, Linux, and Mac OS X, producing source files compatible with CPython 2.4 through 3.4.
It works by producing a standard Python module. However, the behavior differs from standard Python in that the module code, originally written in Python, is translated into C. While the resulting code is fast, it makes many calls into the CPython interpreter and CPython standard libraries to perform actual work. Choosing this arrangement saved considerably on Cython's development time, but modules have a dependency on the Python interpreter and standard library.
Although most of the code is C-based, a small stub loader written in interpreted Python is usually required (unless the goal is to create a loader written entirely in C, which may involve work with the undocumented internals of CPython). However, this is not a major problem due to the presence of the Python interpreter.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Cython」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.