Lexical scanner for Pythonsourcecode.
Pythonソースコードのための字句解析器。 - Python
Compile Pythonsource files to byte-code files.
Pythonソースファイルをバイトコードファイルへコンパイル。 - Python
Tries to compile source, which should be a string of Pythoncode and return a code object if source is valid Pythoncode. sourceが有効なPythonコードではないが、有効なPythonコードの接頭語である場合には、Noneを返します。 - Python
Access parse trees for Pythonsourcecode.
Pythonソースコードに対する解析木へのアクセス。 - Python
The Python compiler package is a tool for analyzing Pythonsourcecode and generating Python bytecode. Python compiler パッケージは Python のソースコードを分析したりPython バイトコードを生成するためのツールです。 - Python
The tokenize module provides a lexical scanner for Pythonsourcecode, implemented in Python. tokenizeモジュールでは、Python で実装された Pythonソースコードの字句解析器を提供します。 - Python
which allows you to implement a Pythonsourcecode profiler in Python. プロファイル関数は、Pythonのソースコードプロファイルを行う関数で、Pythonで記述することができます。 - Python
which allows you to implement a Pythonsourcecode debugger in Python. トレース関数はPythonのソースデバッガを実装するために使用することができます。 - Python
Parse and compile the Pythonsourcecode in str, returning the resulting code object. str内のPythonソースコードをパースしてコンパイルし、作られたコードオブジェクトを返します。 - Python
Produce a string that is suitable as Unicode literal in Pythonsourcecode Python ソースコードにおける Unicode リテラルとして適切な文字列を生成します。 - Python
Examples of Pythonsourcecode or interactive sessions are represented as verbatim environments. 6.4 コードの例示 Python ソースコードや対話セッションの例には verbatim 環境を使います。 - Python
Produce a string that is suitable as raw Unicode literal in Pythonsourcecode Python ソースコードにおける raw Unicode リテラルとして適切な文字列を生成します。 - Python
This is the symbol to use when compiling arbitrarily long Pythonsourcecode. これは任意の長さのPythonソースコードをコンパイルするときに使う記号です。 - Python
Produce a string that is suitable as string literal in Pythonsourcecode Python ソースコードにおける文字列リテラルとして適切な文字列を生成します。 - Python
It's not necessarily binary, though, because it might contain only Pythonsourcecode and/or byte-code; and we don't call it a package, because that word is already spoken for in Python. 配布物には、 Python ソースコード、かつ/またはバイトコードが入るからです; また、我々はパッケージという呼び方もしません。 - Python
Parse Pythonsourcecode from str using the start tokenstart according to the flags argument.
開始トークンstartを使ってstrに含まれる Python ソースコードをflags 引数に従ってパースします。 - Python
The compiler contains libraries to generate an abstract syntax tree from Pythonsourcecode and to generate Python bytecode from the tree. The compiler はPython のソースコードから抽象的な構文木を生成し、その構文木からPython バイトコードを生成するライブラリをそなえています。 - Python
Doctest directives are expressed as a special Python comment following an example's source code: doctest ディレクティブは特殊な Python コメント文として表現され、例題のソースコードの後に続けます: - Python
Return an abstract syntax tree for the Pythonsourcecode in the file specified by path. path で指定されたファイル中の Python ソースコードから得られた抽象構文木 AST を返します。 - Python
(I won'tdwell on how to call the Python parser with a particular string as input -- if you're interested, have a look at the implementation of the -c command line option in Python/pythonmain.cfrom the Pythonsource code.)Calling a Python function is easy. (Python パーザを特定の入力文字を使って呼び出す方法について詳説するつもりはありません -- この方法に興味があるなら、Python ソースコードの Python/pythonmain.c にある、コマンドラインオプション-c の実装を見てください)Python 関数の呼び出しは簡単です。 - Python
This sourcecode consists of a single Python statement, and always ends with a newline; the constructor adds a newline when necessary. ソースコードは単一のPython で、末尾は常に改行です。 コンストラクタは必要に応じて改行を追加します。 - Python
in the section``CObjects'' and in the implementation of CObjects (files Include/cobject.h andObjects/cobject.c in the Pythonsourcecode distribution). の ``CObjects '' の節、およびCObjects の実装部分 (Python ソースコード配布物中のファイル Include/cobject.h およびObjects/cobject.c に述べられています。 - Python
Execute Pythonsourcecode from str in the context specified by the dictionaries globals and locals with the compiler flags specified by flags. 辞書globalsとlocalsで指定されるコンテキストにおいて、strに含まれるPythonソースコードをコンパイラフラグ flags のもとで実行します。 - Python
Although Python is copyrighted, the sourcecode is freely available, and unlike GNU software, it can be commercially re-sold.
Pythonには著作権があるとはいえ, そのソースコードは無料で入手でき, GNUソフトウェアと違って商用の再販売もできる. - コンピューター用語辞典
Portage, the package maintenance system which Gentoo uses, is written in Python, meaning you can easily view and modify the sourcecode. Portage、これはGentooの使うパッケージ管理システムですが、誰もが簡単にソースコードを見たり変更したりできるように、Pythonで書かれています。 - Gentoo Linux
Returns an abstract syntax tree for the Pythonsourcecode in buf.The function raises SyntaxError if there is an error in the sourcecode.
buf 中の Python ソースコードから得られた抽象構文木 AST を返します。 ソースコード中にエラーがある場合、この関数は SyntaxError を発生させます。 - Python
Prior to Python 2.2, it was necessary to edit the profiler sourcecode to embed the bias asa literal number. Python 2.2 より前のバージョンではプロファイラのソースコードに補正値として埋め込まれた定数を直接編集する必要がありました。 - Python
It supports setting(conditional) breakpoints and single stepping at the source line level, inspection of stack frames, sourcecode listing, and evaluation of arbitrary Pythoncode in the context of any stack frame. (条件付き)ブレークポイントの設定やソース行レベルでのシングルステップ実行、スタックフレームのインスペクション、ソースコードリスティングおよびいかなるスタックフレームのコンテキストにおける任意のPythonコードの評価をサポートしています。 - Python
The functions in this chapter will let you execute Pythonsourcecode given in a file or a buffer, but they will not let you interact in a more detailed way with the interpreter.Several of these functions accept a start symbol from the grammar as a parameter. この章の関数を使うとファイルまたはバッファにあるPythonソースコードを実行できますが、より詳細なやり取りをインタプリタとすることはできないでしょう。 これらの関数のいくつかは引数として文法の開始記号を受け取ります。 - Python
Return in a single string any lines of comments immediately preceding the object's sourcecode (for a class, function, or method), or at the top of the Pythonsource file (if the object is a module). オブジェクトがクラス・関数・メソッドの何れかの場合は、オブジェクトのソースコードの直後にあるコメント行(複数行)を、単一の文字列として返します。 オブジェクトがモジュールの場合、ソースファイルの先頭にあるコメントを返します。 - Python
例文データの著作権について
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.