1153万例文収録!

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


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > embedding pythonに関連した英語例文

セーフサーチ:オン

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

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

セーフサーチについて

embedding pythonの部分一致の例文一覧と使い方

該当件数 : 24



例文

1.4 Embedding Python 例文帳に追加

1.4 Python の埋め込み - Python

5.5 Embedding Python in 例文帳に追加

5.5 C++による Python の埋め込み - Python

5.5 Embedding Python in C++ 例文帳に追加

5.5 C++による Python の埋め込み - Python

Extending and Embedding the Python Interpreter 例文帳に追加

Python インタプリタの拡張と埋め込み - Python

例文

5. Embedding Python in 例文帳に追加

5. 他のアプリケーションへの Python の埋め込み - Python


例文

Embedding Python in Another Application 例文帳に追加

5. 他のアプリケーションへの Python の埋め込み - Python

5. Embedding Python in Another Application 例文帳に追加

5. 他のアプリケーションへの Python の埋め込み - Python

Extending and Embeddingthe Python Interpreter 例文帳に追加

インタプリタの拡張と組み込み Extending and Embedding the Python Interpreter - Python

Extending and Embedding the 例文帳に追加

Python インタプリタの拡張と埋め込み - Python

例文

When embedding Python, the interface code does: 例文帳に追加

Python を埋め込む場合には、インタフェースコードが行う作業は以下のようになります: - Python

例文

The simplest form of embedding Python is the use of the very high level interface.例文帳に追加

Python の埋め込みの最も簡単な形式は、超高水準インタフェースの利用です。 - Python

An embedding application might want to restart Python without having to restart the application itself.例文帳に追加

Python の埋め込みを行っているアプリケーションでは、アプリケーションを再起動することなくPython を再起動したいことがあります。 - Python

The difference is that when you extend Python, the main program of the application is still the Python interpreter, while if you embed Python, the main program may have nothing to do with Python --instead, some parts of the application occasionally call the Python interpreter to run some Python code.So if you are embedding Python, you are providing your own main program.例文帳に追加

その違いは、Python を拡張した場合にはアプリケーションのメインプログラムは依然として Python インタプリタである一方、 Python を組み込みんだ場合には、メインプログラムにはPython が関係しない -- その代わりに、アプリケーションのある一部分が時折 Python インタプリタを呼び出して何らかの Python コードを実行させる -- かもしれない、ということです。 従って、 Python の埋め込みを行う場合、自作のメインプログラムを提供しなければなりません。 - Python

While people have embedded Python in other applications since its early existence, the process of embedding Python is less straightforward than writing an extension. 例文帳に追加

一方、他のアプリケーションへの Python の埋め込みは、Python ができてから早い時期から行われてきましたが、拡張モジュールの作成に比べるとやや難解です。 - Python

The interesting part with respect to embedding Pythonstarts with 例文帳に追加

Python の埋め込みという観点から最も興味深い部分は以下のコード、 - Python

The document also describes how to embed the Python interpreter in another application, for use as an extension language.例文帳に追加

このドキュメントではまた、Python インタプリタを別のアプリケーションに埋め込み (embedding)、拡張言語として使う方法についても述べます。 - Python

Refer to Extending and Embedding the Python Interpreter,section1.12, ``Providing a C API for an Extension Module,'' for more information on using these objects.例文帳に追加

このオブジェクトの使用法に関する情報は、Python インタプリタの拡張と埋め込み 1.12 節、``Providing a C API for an Extension Module,'' を参照してください。 - Python

You can also call the lower-leveloperations described in the previous chapters to construct and use Python objects.A simple demo of embedding Python can be found in the directoryDemo/embed/ of the source distribution.例文帳に追加

これまでの各章で説明した低水準の操作を呼び出して、Python オブジェクトを構築したり使用したりもできます。 Python の埋め込みを行っている簡単なデモは、ソース配布物のDemo/embed/ ディレクトリにあります。 - Python

The second reason is to use Python as a component in a larger application; this technique is generally referred to as embedding Python in an application.Writing an extension module is a relatively well-understood process, where a ``cookbook'' approach works well.例文帳に追加

拡張モジュールの作成は比較的わかりやすいプロセスで、``手引書 (cookbook)'' 的なアプローチでうまく実現できます。 - Python

It is also possible to do it the other way around:enrich your C/C++ application by embedding Python in it. 例文帳に追加

同じようなことを別の方法でも実行できます: それは、自分の C/C++アプリケーションに Python を埋め込んで機能を強化する、というものです。 - Python

At the cost of having to write more C code, you can achieve almost anything.It should be noted that extending Python and embedding Python is quite the same activity, despite the different intent.例文帳に追加

より多く C コードを書かねばならない代わりに、ほぼ何でもできるようになります。 Python の拡張と埋め込みは、趣旨こそ違え、同じ作業であるということに注意せねばなりません。 - Python

This is probably the most common use.例文帳に追加

第二は、より大規模なアプリケーション内で Python を構成要素 (component) として利用するという目的です;このテクニックは、一般的にはアプリケーションへの Python の埋め込み (embedding) と呼びます。 - Python

Many API functions are useful independent of whether you're embedding or extending Python; moreover, most applications that embed Python will need to provide a custom extension as well, so it's probably a good idea to become familiar with writing an extension before attempting to embed Python in a real application. Subsections 例文帳に追加

多くの API 関数は、Python の埋め込みであるか拡張であるかに関わらず役立ちます; とはいえ、 Python を埋め込んでいるほとんどのアプリケーションは、同時に自作の拡張モジュールも提供する必要が生じることになるでしょうから、Python を実際にアプリケーションに埋め込んでみる前に拡張モジュールの書き方に詳しくなっておくのはよい考えだと思います。 - Python

例文

But since the return value can only be used portably to restore it, that is not very useful (except perhaps to find out whether or not the locale is "C").When Python code uses the locale module to change the locale,this also affects the embedding application.例文帳に追加

しかし、返される値もロケールの復帰のために使えるだけなので、さほど便利とはいえません (例外はおそらくロケールが "C" かどうか調べることでしょう)。 ロケールを変更するために Python コードで locale モジュールを使った場合、Python を埋め込んでいるアプリケーションにも影響を及ぼします。 - Python




  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS