| 例文 |
python fromの部分一致の例文一覧と使い方
該当件数 : 117件
Their contents may change from one version of Python to the next without warning and should not be relied on by code which will run under multiple versions of the interpreter.例文帳に追加
メッセージの内容は、ある 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
The readline module defines a number of functions used either directly or from the例文帳に追加
readline モジュールでは、補完をしやすくしたり、ヒストリファイルを Python インタプリタから読み書きできるようにするためのいくつかの関数を定義しており、これらは直接使うことも - Python
However, transportingcode from one Python version to another as source text will always allow correct parse trees to be created in the target version, with the only restriction being that migrating to an older version of the interpreter will not support more recent language constructs.例文帳に追加
しかし、Pythonのあるバージョンから別のバージョンへテキストのソースのままコードを移せば、目的のバージョンで正しい解析木を常に作成できます。 ただし、インタープリタの古いバージョンへ移行する際に、最近の言語コンストラクトをサポートしていないことがあるという制限だけがあります。 - Python
The trunk is made in the shape of a bowl, being different from that of Kokyu in the main islands of Japan (in olden times, the trunk was made by splitting the nut of coconut palms into halves), and the leather of a python is used for covering the trunk as those for Sanshin (Okinawan traditional three-stringed instrument). 例文帳に追加
胴は内地の胡弓と異なって椀型になっており(古くは椰子の実を二つに割って胴にした)、三線と同様にニシキヘビの皮を張る。 - Wikipedia日英京都関連文書対訳コーパス
Warning:This function is not safe from user errors! 例文帳に追加
警告:この関数はユーザのエラーに対して安全ではありません! この関数では、入力は有効な Python の式であると期待しています; 入力が構文的に正しくない場合、SyntaxError が送出されます。 - Python
in Python, from lowestprecedence (least binding) to highest precedence (most binding).Operators in the same box have the same precedence. 例文帳に追加
の最も低い (結合度が最も低い)ものから最も高い (結合度が最も高い) ものの順に並べたものです。 同じボックス内に示された演算子は同じ優先順位を持ちます。 - Python
Note that any Python object references which are provided to the caller are borrowed references; do not decrement their reference count!Additional arguments passed to these functions must be addresses of variables whose type is determined by the format string; these are used to store values from the input tuple.例文帳に追加
呼び出し側に提供される Python オブジェクトの参照は全て 借りた (borrowed) ものです; オブジェクトの参照カウントをデクリメントしてはなりません!以下の関数に渡す補助引数 (additional argument) は、書式化文字列から決定される型へのアドレスでなければなりません; 補助引数に指定したアドレスは、タプルから入力された値を保存するために使います。 - Python
(That tarfile is considered ``dumb'' because it has to be unpacked in a specific location to work.)Thus, the above command on a Unix system createsDistutils-1.0.plat.tar.gz; unpacking this tarball from the right place installs the Distutils just as though you haddownloaded the source distribution and run python setup.pyinstall.例文帳に追加
(tar ファイルは、特定の場所に手作業で解凍しないと動作しないので、 ``ダム: 賢くない'' 形式とみなします。 )従って、 Unix システムで上記のコマンドを実行すると、Distutils-1.0.plat.tar.gz を作成します; この tarball を正しい場所で解凍すると、ちょうどソース配布物をダウンロードして python setup.py install を実行したのと同じように、正しい場所に Distutils がインストールされます。 - Python
It is possible to pass Python long integers where integers are requested; however no proper range checking is done -- the most significant bits are silently truncated when the receiving field is too small to receive the value (actually, the semantics are inherited from downcasts in C -- your mileage may vary).A few other characters have a meaning in a format string.例文帳に追加
Python 整数型を要求している場所に Python 長整数型を渡すのは可能です; しかしながら、適切な値域チェックはまったく行われません --値を受け取るためのフィールドが、値全てを受け取るには小さすぎる場合、上桁のビット群は暗黙のうちに切り詰められます (実際のところ、このセマンティクスは C のダウンキャスト (downcast) から継承しています -- その恩恵は人それぞれかもしれませんが)。 その他、書式化文字列において意味を持つ文字がいくつかあります。 - Python
Python's support for detecting and collecting garbage which involvescircular references requires support from object types which are``containers'' for other objects which may also be containers. 例文帳に追加
Python が循環参照を含むガベージの検出とコレクションをサポートするには、他のオブジェクトに対する ``コンテナ'' (他のオブジェクトには他のコンテナも含みます) となるオブジェクト型によるサポートが必要です。 - Python
If the script directory is not available (e.g. if the interpreter is invoked interactively or if the script is read from standard input), path[0] is the empty string, which directsPython to search modules in the current directory first.例文帳に追加
スクリプトのディレクトリがない(インタープリタで対話セッションで起動された時や、スクリプトを標準入力から読み込む場合など)場合、path[0]には空文字列となり、Pythonはカレントディレクトリからモジュールの検索を開始します。 - Python
Just like the standard Python list type has a C API which permits extension modules to create and manipulate lists, this new collection type should have a set of C functions for direct manipulation from other extension modules.At first sight this seems easy: just write the functions (withoutdeclaring them static, of course), provide an appropriate header file, and document the C API.例文帳に追加
ちょうどリストを生成したり操作したりできる C API を備えた標準のPython リスト型のように、この新たなコレクション型も他の拡張モジュールから直接操作できるようにするには一連の C 関数を持っていなければなりません。 一見するとこれは簡単なこと: 単に関数を (もちろんstatic などとは宣言せずに) 書いて、適切なヘッダファイルを提供し、C APIを書けばよいだけ、に思えます。 - Python
The socket address will be resolved differently into an actual IPv4/v6 address,depending on the results from DNS resolution and/or the host configuration.例文帳に追加
IPv4/v6ソケットのhost部にホスト名を指定すると、処理結果が一定ではない場合があります。 これはPythonはDNSから取得したアドレスのうち最初のアドレスを使用するので、DNSの処理やホストの設定によって異なるIPv4/6アドレスを取得する場合があるためです。 - Python
Once a reference cycle has been created, the lifespan of all objects which can be accessed from the objects which form the cycle can become much longer even if Python's optional cycle detector is enabled.例文帳に追加
循環参照ができると、Pythonの循環参照検出機能を有効にしていたとしても関連するオブジェクトが参照しているすべてのオブジェクトが解放されにくくなり、明示的に参照を削除しないとメモリ消費量が増大する恐れがあります。 - Python
Some of them don't convert from Unicode strings to byte strings, but instead use the property of the Pythoncodecs machinery that any bijective function with one argument can be considered as an encoding.For the codecs listed below, the result in the ``encoding'' direction is always a byte string.例文帳に追加
これらの codec の中にはUnicode 文字列からバイト文字列への変換を行わず、むしろ単一の引数をもつ全写像関数はエンコーディングとみなせるというPython codec の性質を利用したものもあります。 以下に列挙した codec では、``エンコード'' 方向の結果は常にバイト文字列方向です。 - Python
There are a number of reasons for this,the most important being the early commitment of Python's creator,Guido van Rossum, to providing documentation on the language and its libraries, and the continuing involvement of the user community in providing assistance for creating and maintaining documentation.The involvement of the community takes many forms, from authoring to bug reports to just plain complaining when the documentation could be more complete or easier to use.例文帳に追加
その理由は多々ありますが、最も重要なのは、Python の作者である Guido van Rossum が、言語やそのライブラリのドキュメントの提供と、ドキュメントの作成と維持の手助けする上でのユーザコミュニティの継続的な参加に早期から関わっていたことです。 コミュニティの参加には、バグ報告の作成から、単にドキュメントをより完全で利用しやすいものにできる場合に素朴な提案をするといったことまで、いくつものやりかたがあります。 - Python
| 例文 |
| 本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。 |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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会員(無料)になると
|