| 例文 |
"pure python"を含む例文一覧と使い方
該当件数 : 22件
7.1 Pure Python distribution 例文帳に追加
1 pure Python 配布物 - Python
7.2 Pure Python distribution 例文帳に追加
2 pure Python 配布物 - Python
7.1 Pure Python distribution (by module) 例文帳に追加
1 pure Python 配布物 (モジュール形式) - Python
7.2 Pure Python distribution (by package) 例文帳に追加
2 pure Python 配布物 (パッケージ形式) - Python
a module distribution that contains only pure Python modules and packages.例文帳に追加
pure Python モジュールやパッケージだけが入ったモジュール配布物です。 - Python
Three types of modules concern ushere: pure Python modules, extension modules, and packages. 例文帳に追加
ここでは、三種類のモジュール: pure Python モジュール、拡張モジュール、パッケージが関わってきます。 - Python
IDLE has the following features: coded in 100% pure Python, using the 例文帳に追加
IDLEは次のような特徴があります: - Python
is a library that allows you to write new Tkinter widgets in pure Python.例文帳に追加
は、新しい Tkinter ウィジェットを、 Python で書けるようにするライブラリです。 - Python
OnUnix and Mac OS, it also depends on whether the module distribution being installed is pure Python or contains extensions (``non-pure''):例文帳に追加
Unix や Mac OSでは、インストールしようとするモジュール配布物が pure Python なのか、拡張モジュールを含む (``非 pure'') のかによっても異なります: - Python
The first form, with just a lib directory, is used for ``pure module distributions''--thatis, module distributions that include only pure Python modules.例文帳に追加
第一の lib ディレクトリだけの形式は、 ``pure モジュール配布物''-- すなわち、pure Python モジュールだけの入ったモジュール配布物 --の場合に使われます。 - Python
Just as writing Python extension modules is a bit more complicated than writing pure Python modules, describing them to the Distutils is a bit more complicated.例文帳に追加
pure Python モジュールを書くより Python 拡張モジュールを書く方がちょっとだけ複雑なように、 Distutils での拡張モジュールに関する記述もちょっと複雑です。 - Python
The packages option tells the Distutils to process (build,distribute, install, etc.) all pure Python modules found in each package mentioned in the packages list.例文帳に追加
packages オプションは、 packages リスト中で指定されている各々のパッケージについて、パッケージ内に見つかった全ての pure Python モジュールを処理 (ビルド、配布、インストール、等) するよう Distutils に指示します。 - Python
If you have a pure module distribution (only containing pure Python modules and packages), the resulting installer will be versionindependent and have a name like foo-1.0.win32.exe.例文帳に追加
(pure Python モジュールとパッケージだけの入った) pure モジュール配布物の場合、作成されるインストーラは実行バージョンに依存しない形式になり、 foo-1.0.win32.exe のような名前になります。 - Python
those keyword arguments fall into two categories: packagemetadata (name, version number) and information about what's in the package (a list of pure Python modules, in this case)例文帳に追加
キーワード引数は二つのカテゴリ: パッケージのメタデータ (パッケージ名、バージョン番号) 、パッケージに何が収められているかの情報 (上の場合は pure Python モジュールのリスト)、に行き着きます。 - Python
There are only two differences between this and the trivial one-filedistribution presented in section1.2: more metadata, and the specification of pure Python modules by package,rather than by module.例文帳に追加
上の例と、2 で示したファイル一つからなる小さな配布物とは、違うところは二つしかありません: メタデータの追加と、モジュールではなくパッケージとして pure Python モジュール群を指定しているという点です。 - Python
Because this class is implemented in pure Python, it is not thread safe and may require locks between calls.例文帳に追加
このクラスは、Python だけで実装されているので、スレッドセーフではなく、呼び出しと呼び出しの間にロックが必要です。 - Python
The fpformat module defines functions for dealing with floating point numbers representations in 100% pure Python.例文帳に追加
注意:This module is unneeded: everything here couldbe done via the % string interpolation operator. fpformat モジュールは浮動小数点数の表示を 100% 純粋に Python だけで行うための関数を定義しています。 - Python
As an example of subclassing, the random module provides the WichmannHill class which implements an alternative generator in pure Python.例文帳に追加
サブクラス化の例として、random モジュールは WichmannHill クラスを提供します。 このクラスは Python だけで書かれた代替生成器を実装しています。 - Python
Obviously, for pure Python distributions, this isn't any simpler than just running python setup.py install--but for non-puredistributions, which include extensions that would need to be compiled, it can mean the difference between someone being able to use your extensions or not.例文帳に追加
) 言うまでもなく、 pure Python 配布物の場合なら、python setup.py install するのに比べて大して簡単になったとは言えません--しかし、非 pure 配布物で、コンパイルの必要な拡張モジュールを含む場合、拡張モジュールを利用できるか否かという大きな違いになりえます。 - Python
The new modules may be either 100%-pure Python, or may be extension modules written in C, or may be collections of Python packages which includemodules coded in both Python and C.This package is discussed in two separate documents which are included in the Python documentation package.例文帳に追加
新規のモジュールは 100%-pure Python でも、C で書かれた拡張モジュールでも、あるいは Python と C 両方のコードが入っているモジュールからなるPython パッケージでもかまいません。 このパッケージは、Python ドキュメンテーション パッケージに含まれているこれとは別の 2つのドキュメントで詳しく説明されています。 - Python
This library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as modules written in Python that providestandardized solutions for many problems that occur in everydayprogramming.例文帳に追加
このライブラリには、例えばファイルI/O のように, Python プログラマが直接アクセスできないシステム機能へのアクセス機能を提供する (Cで書かれた) 組み込みモジュールや、日々のプログラミングで生じる多くの問題に標準的な解決策を提供するpure 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会員(無料)になると
|