1016万例文収録!

「Python source code」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > Python source codeに関連した英語例文

セーフサーチ:オフ

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

Python source codeの部分一致の例文一覧と使い方

該当件数 : 30



例文

Lexical scanner for Python source code. 例文帳に追加

Pythonソースコードのための字句解析器。 - Python

Tries to compile source, which should be a string of Python code and return a code object if source is valid Python code.例文帳に追加

sourceが有効なPythonコードではないが、有効なPythonコードの接頭語である場合には、Noneを返します。 - Python

The Python compiler package is a tool for analyzing Python source code and generating Python bytecode.例文帳に追加

Python compiler パッケージは Python のソースコードを分析したりPython バイトコードを生成するためのツールです。 - Python

Access parse trees for Python source code. 例文帳に追加

Pythonソースコードに対する解析木へのアクセス。 - Python

例文

Compile Python source files to byte-code files. 例文帳に追加

Pythonソースファイルをバイトコードファイルへコンパイル。 - Python


例文

which allows you to implement a Python source code profiler in Python.例文帳に追加

プロファイル関数は、Pythonのソースコードプロファイルを行う関数で、Pythonで記述することができます。 - Python

The tokenize module provides a lexical scanner for Python source code, implemented in Python.例文帳に追加

tokenizeモジュールでは、Python で実装された Pythonソースコードの字句解析器を提供します。 - Python

Produce a string that is suitable as raw Unicode literal in Python source code例文帳に追加

Python ソースコードにおける raw Unicode リテラルとして適切な文字列を生成します。 - Python

Produce a string that is suitable as Unicode literal in Python source code例文帳に追加

Python ソースコードにおける Unicode リテラルとして適切な文字列を生成します。 - Python

例文

This is the symbol to use when compiling arbitrarily long Python source code.例文帳に追加

これは任意の長さのPythonソースコードをコンパイルするときに使う記号です。 - Python

例文

which allows you to implement a Python source code debugger in Python.例文帳に追加

トレース関数はPythonのソースデバッガを実装するために使用することができます。 - Python

Parse and compile the Python source code in str, returning the resulting code object.例文帳に追加

str内のPythonソースコードをパースしてコンパイルし、作られたコードオブジェクトを返します。 - Python

The compiler contains libraries to generate an abstract syntax tree from Python source code and to generate Python bytecode from the tree. The例文帳に追加

compiler はPython のソースコードから抽象的な構文木を生成し、その構文木からPython バイトコードを生成するライブラリをそなえています。 - Python

It's not necessarily binary, though, because it might contain only Python source code and/or byte-code; and we don't call it a package, because that word is already spoken for in 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 Python source code in the file specified by path.例文帳に追加

path で指定されたファイル中の Python ソースコードから得られた抽象構文木 AST を返します。 - Python

Examples of Python source code or interactive sessions are represented as verbatim environments.例文帳に追加

6.4 コードの例示 Python ソースコードや対話セッションの例には verbatim 環境を使います。 - Python

Produce a string that is suitable as string literal in Python source code例文帳に追加

Python ソースコードにおける文字列リテラルとして適切な文字列を生成します。 - Python

in the section``CObjects'' and in the implementation of CObjects (files Include/cobject.h andObjects/cobject.c in the Python source code distribution).例文帳に追加

の ``CObjects '' の節、およびCObjects の実装部分 (Python ソースコード配布物中のファイル Include/cobject.h およびObjects/cobject.c に述べられています。 - Python

Parse Python source code from str using the start tokenstart according to the flags argument. 例文帳に追加

開始トークンstartを使ってstrに含まれる Python ソースコードをflags 引数に従ってパースします。 - 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 Python source code.)Calling a Python function is easy.例文帳に追加

(Python パーザを特定の入力文字を使って呼び出す方法について詳説するつもりはありません -- この方法に興味があるなら、Python ソースコードの Python/pythonmain.c にある、コマンドラインオプション-c の実装を見てください)Python 関数の呼び出しは簡単です。 - Python

Although Python is copyrighted, the source code 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 source code.例文帳に追加

Portage、これはGentooの使うパッケージ管理システムですが、誰もが簡単にソースコードを見たり変更したりできるように、Pythonで書かれています。 - Gentoo Linux

This source code consists of a single Python statement, and always ends with a newline; the constructor adds a newline when necessary.例文帳に追加

ソースコードは単一のPython で、末尾は常に改行です。 コンストラクタは必要に応じて改行を追加します。 - Python

Returns an abstract syntax tree for the Python source code 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 source code to embed the bias asa literal number.例文帳に追加

Python 2.2 より前のバージョンではプロファイラのソースコードに補正値として埋め込まれた定数を直接編集する必要がありました。 - Python

Execute Python source code 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

It supports setting(conditional) breakpoints and single stepping at the source line level, inspection of stack frames, source code listing, and evaluation of arbitrary Python code in the context of any stack frame.例文帳に追加

(条件付き)ブレークポイントの設定やソース行レベルでのシングルステップ実行、スタックフレームのインスペクション、ソースコードリスティングおよびいかなるスタックフレームのコンテキストにおける任意のPythonコードの評価をサポートしています。 - Python

The functions in this chapter will let you execute Python source code 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 source code (for a class, function, or method), or at the top of the Python source file (if the object is a module).例文帳に追加

オブジェクトがクラス・関数・メソッドの何れかの場合は、オブジェクトのソースコードの直後にあるコメント行(複数行)を、単一の文字列として返します。 オブジェクトがモジュールの場合、ソースファイルの先頭にあるコメントを返します。 - Python

索引トップ用語の索引



  
コンピューター用語辞典
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
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.
  
Copyright 2001-2010 Gentoo Foundation, Inc.
The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS