「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

例文データの著作権について