Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 105 for UNICODE (0.096 sec.)
Argument Clinic How-To — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... use when converting this string from a Python str (Unicode) value into a C char * value. subclass_of Only sup ... oes=True) 's*' Py_buffer(accept={buffer, str}) 'U' unicode 'u' Py_UNICODE 'u#' Py_UNICODE(zeroes=True) 'w*' P ... ept={robuffer}, zeroes=True) 'y*' Py_buffer 'Z' Py_UNICODE(accept={str, NoneType}) 'Z#' Py_UNICODE(accept={st ... want to ensure that the object is a subclass of PyUnicode_Type , you probably want to use the converter obje ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... トデータをサポートしていると主張しているのに明示的に unicode をサポートすることに注意を払わない API、という形で ... making sure the APIs that take text can work with unicode and those that work with binary data work with the ... es in Python 2 & 3 simultaneously (for text that's unicode in Python 2 and str in Python 3, for binary that's ... e__ import to force all unspecified literals to be Unicode, but usage has shown it isn't as effective as addi ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed. Any surrogateescaped bytes get turned into the unicode unknown-character glyph. fold ( name , value ) ¶ H ... ttributes, whose string value is the fully decoded unicode value of the header. Likewise, a header may be ass ... gned a new value, or a new header created, using a unicode string, and the policy will take care of convertin ... g the unicode string into the correct RFC encoded form. ヘッダオ ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 出されます。 NameError のサブクラスです。 exception UnicodeError ¶ Unicode に関するエンコードまたはデコードのエ ... した際に送出されます。 ValueError のサブクラスです。 UnicodeError はエンコードまたはデコードのエラーの説明を属性 ... の最後の無効なデータの次のインデクスです。 exception UnicodeEncodeError ¶ Unicode 関連のエラーがエンコード中に発 ... 生した際に送出されます。 UnicodeError のサブクラスです。 exception UnicodeDecodeErr ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
31.3. modulefinder --- スクリプト中で使われているモジュールを検索する — Python ... 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... __all__ sre_compile : isstring , _sre , _optimize_unicode _sre : sre_constants : REPEAT_ONE , makedict , AT_ ... baconhameggs sre_parse : _PATTERNENDERS , SRE_FLAG_UNICODE array : types : __module__ , IntType , TypeType -- ...
https://man.plustar.jp/python/library/modulefinder.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 6231
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 多くの変更が安全に自動的に行える一方で、その他の変更(Unicode の扱いに関係するものに顕著ですが)入念な検討を必要と ... す。(Fixed by Meador Inge; bpo-7902 .) ビルトインの unicode 型のサブクラスが __unicode__() メソッドをオーバーラ ... (Patch by Gawain Bolton; bpo-6713 .) 文字列等(str, unicode, bytearray ) の split() , replace() , rindex() , r ... また、アラビア・インド数字などの、ヨーロッパ以外の Unicode 文字も受け入れるようになりました。 (contributed by ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
Python 3 への拡張モジュール移植 — Python 3.6.5 ドキュメント 6180
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... くつかを、統合したり、きっちり分けたりしました。 str/unicode の統合 ¶ Python 3 の str() タイプは Python 2 の un ... icode() と同じもので、どちらも C 関数は PyUnicode_* と呼ばれます。昔の 8 ビット文字列タイプは bytes( ... います。Python 3 との互換性を最大限確保するには、 PyUnicode は文字データに、 PyBytes はバイナリデータにだけ使う ... べきです。ほかにも、Python 3 の PyBytes と PyUnicode は Python 2 の PyString と PyUnicode とは違って交換 ...
https://man.plustar.jp/python/howto/cporting.html - [similar]
23.1. gettext --- 多言語対応に関する国際化サービス — Python 3.6.5 ドキュメント 6180
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... テキストをバイト列ではなく文字列として扱いたいので、 Unicode 文字列を返す代わりの関数を使う方が良いです。 さらに ... 、翻訳文字列にエンコーディング上の問題があった場合、 Unicode 関連の予期しない例外を受け取るかもしれません。 この ... とメッセージ文字列は、指定されたエンコードを用いて Unicode に変換され、そうでなければ ASCII エンコーディングと ... message id を検索して、対応するメッセージ文字列を Unicode でエンコードして返します。 message id に対応するエ ...
https://man.plustar.jp/python/library/gettext.html - [similar]
例外処理 — Python 3.6.5 ドキュメント 6141
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... と以降の引数はエラーメッセージを作るためのもので, PyUnicode_FromFormat() の引数と同じ意味を持っています。 form ... な関数ですが、警告メッセージをフォーマットするのに PyUnicode_FromFormat() を使用します。 format は ASCII にエン ... 的に __suppress_context__ に True がセットされます。 Unicode 例外オブジェクト ¶ 以下の関数は C言語から Unicode ... ったり修正したりするために利用します。 PyObject * PyUnicodeDecodeError_Create ( const char *encoding , const c ...
https://man.plustar.jp/python/c-api/exceptions.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6141
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... base API: get_content on a text part will return a unicode string without the application needing to manually ... as the error handler when decoding the payload to unicode. The default error handler is replace . email.cont ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT