「python pass」を含む例文一覧(8)

  • First, the Python program must somehow pass you the Python function object.
    まず、C のコードに対してコールバックを登録しようとする Python プログラムは、何らかの方法でPython の関数オブジェクトを渡さねばなりません。 - Python
  • There are optional calls to pass command line arguments to Python.
    オプションとして、Python 側にコマンドライン引数を渡すために関数呼び出しを行います。 - Python
  • Pass a Python object untouched (except for its reference count,which is incremented by one).
    Python オブジェクトを手を加えずに渡します (ただし、参照カウントは1 インクリメントします)。 - Python
  • Pass the event record ev back to the Python event loop, or possibly to the handler for the sys.stdout window (based on the compiler used to build Python).
    イベントレコード ev を Python のイベントループに渡す、というよりは、sys.stdout ウィンドウ(Pythonをビルドしたコンパイラにもとづいて) のハンドラに渡されることになります。 - Python
  • With this function you can pass a Python event-handler function that will be called if an event is available.
    イベントがある場合は、この関数を使うと、Pythonイベントハンドラ関数を渡せます。 - Python
  • socket module transparently converts Unicode host names to ACE, so that applications need not be concerned about converting hostnames themselves when they pass them to the socket module.
    Python ではこの変換をいくつかの方法でサポートします: idnacodec は Unicode と ACE 間の変換を行います。 - Python
  • The gensuitemodule module creates a Python package implementingstub code for the AppleScript suites that are implemented by a specific application, according to its AppleScript dictionary.It is usually invoked by the user through the PythonIDE, but it can also be run as a script from the command line (pass--help for help on the options) or imported from Python code.
    gensuitemodule モジュールは AppleScript 辞書によって特定のアプリケーションに実装されている AppleScript 群のためのスタブコードを実装した Python パッケージを作成します。 このモジュールは、通常は PythonIDE からユーザによって起動されますが、コマンドラインからスクリプトとして実行する(オプションとしてヘルプに --help を与えてみてください)こともできますし、Python コードでインポートして利用する事もできます。 - 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

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