並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 2 件 / 2件

新着順 人気順

Python3.0の検索結果1 - 2 件 / 2件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

Python3.0に関するエントリは2件あります。 techfeedPython などが関連タグです。 人気エントリには 『Google、「Google Cloud Logging Python 3.0.0」をリリース』などがあります。
  • Google、「Google Cloud Logging Python 3.0.0」をリリース

    「Google Cloud Logging Python 3.0.0」では、Python開発者がGoogle Cloudからログを送受信しやすくなり、アプリケーションで何が起こっているかをリアルタイムで把握できるようになる。 従来バージョンでは、App EngineとKubernetes Engineのみをサポートしており、ライブラリがネットワークを通じてログをバッチ送信していたことから、Cloud RunやCloud Functionsなどのサーバレス環境では、ログをドロップする場合があることが報告されていた。 「Google Cloud Logging Python 3.0.0」では、サポートされている環境でGCPの組み込みの構造化JSONロギング機能を利用することでこの問題を解決しており、ライブラリが構造化ロギングをサポートする環境で実行されていることを検出すると、標準出力に出力され

      Google、「Google Cloud Logging Python 3.0.0」をリリース
    • Python 3.0 listdir() Bug on Undecodable Filenames — Victor Stinner blog 3

      Python 3.0 listdir() Bug on Undecodable Filenames Victor Stinner Fri 09 March 2018 Ten years ago, when Python 3.0 final was released, os.listdir(str) ignored silently undecodable filenames: $ python3.0 >>> os.mkdir(b'x') >>> open(b'x/nonascii\xff', 'w').close() >>> os.listdir('x') [] You had to use bytes to see all filenames: >>> os.listdir(b'x') [b'nonascii\xff'] If the locale is POSIX or C, list

      1

      新着記事