1153万例文収録!

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


小窓モード

プレミアム

ログイン
設定

設定

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

セーフサーチ:オン

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

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

セーフサーチについて

"python object"を含む例文一覧と使い方

該当件数 : 40



例文

Python object persistence. 例文帳に追加

Python オブジェクトの永続化。 - Python

3.14 pickle -- Python object serialization 例文帳に追加

3.14 pickle -- Python オブジェクトの整列化 - Python

3.17 shelve -- Python object persistence 例文帳に追加

3.17 shelve -- Python オブジェクトの永続化 - Python

This might be any Python object. 例文帳に追加

任意の Python オブジェクトです。 - Python

例文

Marshal a Python object, value, to file. 例文帳に追加

Python オブジェクトvalue を file へ整列化します。 - Python


例文

3.19 marshal -- Internal Python object serialization 例文帳に追加

3.19 marshal -- 内部使用向けの Python オブジェクト整列化 - Python

Derives a file-descriptor from a Python object. 例文帳に追加

Python オブジェクトからファイル記述子を取り出します。 - Python

Store a Python object in a C object pointer. 例文帳に追加

Python オブジェクトを C の Python オブジェクト型ポインタに保存します。 - Python

Convert anything to a Python object through a converter function.例文帳に追加

anything を converter 関数を介して Python オブジェクトに変換します。 - Python

例文

Convert a null-terminated C string to a Python object. 例文帳に追加

null 終端された C 文字列から Python オブジェクトに変換します。 - Python

例文

Convert a C string and its length to a Python object. 例文帳に追加

C 文字列とその長さから Python オブジェクトに変換します。 - Python

Convert a Python object to a C variable through a converter function.例文帳に追加

Python オブジェクトを converter 関数を介して C の変数に変換します。 - Python

Fields not defined by the Python object header are not initialized.例文帳に追加

Python オブジェクトヘッダで定義されていないフィールドは初期化されません。 - Python

If the Python object does not have the required type,TypeError is raised.例文帳に追加

Python オブジェクトが指定した型ではない場合、TypeError を送出します。 - Python

Like "O" but requires that the Python object is a Unicodeobject. 例文帳に追加

"O" に似ていますが、Python オブジェクトは Unicode オブジェクトでなければなりません。 - Python

Like "O" but requires that the Python object is a stringobject. 例文帳に追加

"O" に似ていますが、Python オブジェクトは文字列オブジェクトでなければなりません。 - Python

This function returns a Python object representation of the data in the AppleEvent descriptor x.例文帳に追加

この関数は、Apple Eventディスクリプタ x のデータのPythonオブジェクト表現を返します。 - Python

Store a Python object (without any conversion) in a C object pointer.例文帳に追加

Python オブジェクトを (一切変換を行わずに) C の Python オブジェクト型ポインタに保存します。 - Python

The functions in this chapter are specific to certain Python object types.例文帳に追加

この章ではは、特定の Python オブジェクト型固有の関数について述べています。 - Python

The chapter is structured like the``family tree'' of Python object types. 例文帳に追加

この章は Python のオブジェクト型における ``家計図'' に従って構成されています。 - Python

Pass a Python object untouched (except for its reference count,which is incremented by one). 例文帳に追加

Python オブジェクトを手を加えずに渡します (ただし、参照カウントは1 インクリメントします)。 - Python

This type is a pointer to an opaque data type representing an arbitrary Python object.例文帳に追加

この型は、任意の Python オブジェクトを表現する不透明 (opaque) なデータ型へのポインタです。 - Python

Allocate a new Python object using the C structure type TYPE and the Python type object type.例文帳に追加

C 構造体型 TYPE と Python 型オブジェクト type を使って新たな Python オブジェクトをメモリ確保します。 - Python

Like "s", but the Python object may also be None, inwhich case the C pointer is set to NULL. 例文帳に追加

"s" に似ていますが、Python オブジェクトは None でもよく、その場合には C のポインタは NULLにセットされます。 - Python

PixMapWrapper wraps a PixMap object with a Python object that allows access to the fields by name.例文帳に追加

PixMapWrapper はPixMap オブジェクトを Python オブジェクトでラップしたもので、各フィールドに対し名前でアクセスできるようになります。 - Python

The obj parameter is passed to the function as its first parameter, and may be any Python object, or NULL.例文帳に追加

obj パラメタは関数の第一パラメタとして渡され、何らかの Python オブジェクトかまたはNULLになります。 - Python

Fields not defined by the Python object header are not initialized; the object's reference count will be one.例文帳に追加

Python オブジェクトヘッダで定義されていないフィールドは初期化されません;オブジェクトの参照カウントは 1 になります。 - Python

This is used to associate an arbitrary piece of data with the panel, and can be any Python object.例文帳に追加

このメソッドは任意のデータをパネルに関連付けるために使われ、任意の Python オブジェクトにすることができます。 - Python

Return a Python object from the data stream in a character buffer containing len bytes pointed to by string.例文帳に追加

string が指しているlen バイトの文字列バッファに納められたデータストリームから Python オブジェクトを読み出して返します。 - Python

It is a genuine Python object rather than a NULL pointer, which means ``error'' in most contexts, as we have seen.例文帳に追加

これまで見てきたようにほとんどのコンテキストで ``エラー'' を意味する NULL ポインタとは違い、None は純粋なPython のオブジェクトです。 - Python

CObjects can only be created and accessed via their C API, but they can be passed around like any other Python object.例文帳に追加

CObject は C API を介してのみ生成したりアクセスしたりできますが、他の Python オブジェクトと同じように受け渡しできます。 - Python

The pickle module implements a fundamental, but powerfulalgorithm for serializing and de-serializing a Python object structure.例文帳に追加

pickle モジュールでは、Python オブジェクトデータ構造を直列化 (serialize) したり非直列化 (de-serialize) するための基礎的ですが強力なアルゴリズムを実装しています。 - Python

Since all Python object types are treated the same way by the Python language in most situations (e.g., assignments, scope rules,and argument passing), it is only fitting that they should be represented by a single C type.例文帳に追加

Python 言語は、全ての Python オブジェクト型をほとんどの状況 (例えば代入、スコープ規則 (scope rule)、引数渡し) で同様に扱います。 - Python

The fields of the object should not be accessed after this call as the memory is no longer a valid Python object.例文帳に追加

この関数を呼び出した後では、オブジェクトのメモリ領域はもはや有効なPython オブジェクトを表現してはいないので、オブジェクトのフィールドに対してアクセスしてはなりません。 - Python

This is what a Noddy object will contain--in this case, nothing more than every Python object contains, namely a refcount and a pointer to a type object.例文帳に追加

これが Noddy オブジェクトの内容です -- このケースでは、ほかの Python オブジェクトが持っているものと何ら変わりはありません。 つまり参照カウントと型オブジェクトへのポインタですね。 - Python

Not all Python object types are supported; in general, only objects whose value is independent from a particular invocation of Python can be written and read by this module.例文帳に追加

全ての Python オブジェクト型がサポートされているわけではありません;一般的には、どの起動中の Python 上に存在するかに依存しないオブジェクトだけがこのモジュールで読み書きできます。 - Python

So be careful!Note that any Python object references which are provided to the caller are borrowed references; do not decrement their reference count!Some example calls:例文帳に追加

慎重に! 呼び出し側に提供されるオブジェクトへの参照はすべて 借用参照 (borrowed reference) になります; これらのオブジェクトの参照カウントをデクリメントしてはなりません!以下にいくつかの呼び出し例を示します: - Python

In the following description, the quoted form is the format unit; the entry in (round)parentheses is the Python object type that matches the format unit;and the entry in [square] brackets is the type of the C variable(s)whose address should be passed.例文帳に追加

以下の説明では、引用符のついた形式は書式化単位です;(丸)括弧で囲った部分は書式化単位に対応する Python のオブジェクト型です; [角] 括弧は値をアドレス渡しする際に使う C の変数型です。 - Python

Python's complex number objects are implemented as two distinct types when viewed from the C API: one is the Python object exposed to Python programs, and the other is a C structure which represents the actual complex number value.例文帳に追加

Python の複素数オブジェクトは、 C API 側から見ると二つの別個の型として実装されています: 一方は Python プログラムに対して公開されている Python のオブジェクトで、他方は実際の複素数値を表現する C の構造体です。 - 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




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