[Pythonjp-checkins] [python-doc-ja] push by songo****@gmail***** - レビュー: tutorial/stdlib2.rst on 2011-03-07 15:43 GMT

Zurück zum Archiv-Index

pytho****@googl***** pytho****@googl*****
2011年 3月 8日 (火) 00:43:58 JST


Revision: 8de0e2289c
Author: INADA Naoki  <inada****@klab*****>
Date: Mon Mar  7 07:42:04 2011
Log: レビュー: tutorial/stdlib2.rst
http://code.google.com/p/python-doc-ja/source/detail?r=8de0e2289c

Modified:
  /tutorial/stdlib2.rst

=======================================
--- /tutorial/stdlib2.rst	Thu Feb 17 09:21:25 2011
+++ /tutorial/stdlib2.rst	Mon Mar  7 07:42:04 2011
@@ -4,10 +4,9 @@
  標準ライブラリミニツアー -- その 2
  **********************************

-もう一つのツアーでは、プロフェッショナルプログラミングを支えるもっと高度な 
モジュールをカバーします。ここで挙げるモジュールは、
-小さなスクリプトの開発ではほとんど使いません。
-
-.. % Brief Tour of the Standard Library -- Part II
+2回目のツアーでは、プロフェッショナルプログラミングを支えるもっと高度な
+モジュールをカバーします。ここで挙げるモジュールは、小さなスクリプトの
+開発ではほとんど使いません。


  .. _tut-output-formatting:
@@ -15,13 +14,8 @@
  出力のフォーマット
  ==================

-:mod:`repr` モジュールでは、
-大きなコンテナや、深くネストしたコンテナを省略して表示するバージョン 
の :func:`repr` を提供しています:
-
-.. % Output Formatting
-.. % The \ulink{\module{repr}}{../lib/module-repr.html} module provides a
-.. % version of \function{repr()} customized for abbreviated displays of  
large
-.. % or deeply nested containers:
+:mod:`repr` モジュールは、大きなコンテナや、深くネストしたコンテナを
+省略して表示するバージョンの :func:`repr` を提供しています。

  ::

@@ -29,15 +23,10 @@
     >>> repr.repr(set('supercalifragilisticexpialidocious'))
     "set(['a', 'c', 'd', 'e', 'f', 'g', ...])"

-:mod:`pprint` モジュールを使うと、
-組み込み型やユーザ定義型がより洗練された形式で出力されるよう制御できます。 
出力が複数行にわたる場合には、"pretty printer" が改行を追加して、
-入れ子構造を理解しやすいようにインデントを挿入します:
-
-.. % The \ulink{\module{pprint}}{../lib/module-pprint.html} module offers
-.. % more sophisticated control over printing both built-in and user  
defined
-.. % objects in a way that is readable by the interpreter.  When the result
-.. % is longer than one line, the ``pretty printer'' adds line breaks and
-.. % indentation to more clearly reveal data structure:
+:mod:`pprint` モジュールを使うと、組み込み型やユーザ定義型がより洗練された
+形式で出力されるよう制御できます。出力が複数行にわたる場合には、
+"pretty printer" が改行を追加して、入れ子構造を理解しやすいようにインデント 
を
+挿入します。

  ::

@@ -52,11 +41,8 @@
       [['magenta', 'yellow'],
        'blue']]]

-:mod:`textwrap` モジュールは、
-一段落の文を指定したスクリーン幅にぴったり収まるように調整します:
-
-.. % The \ulink{\module{textwrap}}{../lib/module-textwrap.html} module
-.. % formats paragraphs of text to fit a given screen width:
+:mod:`textwrap` モジュールは、一段落の文を指定したスクリーン幅にぴったり
+収まるように調整します。

  ::

@@ -71,14 +57,9 @@
     instead of one big string with newlines
     to separate the wrapped lines.

-:mod:`locale` モジュールは、文化ごと
-に特化したデータ表現形式のデータベースにアクセスします。 :mod:`locale`  
の :func:`format` 関数の grouping
-属性を使えば、数値の各桁を適切な区切り文字でグループ化してフォーマットでき 
ます:
-
-.. % The \ulink{\module{locale}}{../lib/module-locale.html} module accesses
-.. % a database of culture specific data formats.  The grouping attribute
-.. % of locale's format function provides a direct way of formatting  
numbers
-.. % with group separators:
+:mod:`locale` モジュールは、文化ごとに特化したデータ表現形式のデータベース 
に
+アクセスします。 :mod:`locale` の :func:`format` 関数の grouping
+属性を使えば、数値の各桁を適切な区切り文字でグループ化してフォーマットでき 
ます。

  ::

@@ -99,24 +80,15 @@
  文字列テンプレート
  ==================

-:mod:`string` モジュールには、
-柔軟で、エンドユーザが簡単に編集できる簡単な構文を備えた :class:`Template`
-クラスが入っています。このクラスを使うと、ユーザがアプリケーションの出力を 
カスタマイズしたいときに全てを置き換えなくてもすみます。
-
-.. % Templating
-.. % The \ulink{\module{string}}{../lib/module-string.html} module  
includes a
-.. % versatile \class{Template} class with a simplified syntax suitable for
-.. % editing by end-users.  This allows users to customize their  
applications
-.. % without having to alter the application.
-
-テンプレートでは、 ``$`` と有効な Python 識別子名 (英数字とアンダースコア)  
からなるプレースホルダ名を使います。プレースホルダの
-周りを丸括弧で囲えば、間にスペースをはさまなくても後ろに英数文字を続けられ 
ます。 ``$$`` のようにすると、 ``$`` 自体をエスケープできます:
-
-.. % The format uses placeholder names formed by \samp{\$} with valid  
Python
-.. % identifiers (alphanumeric characters and underscores).  Surrounding  
the
-.. % placeholder with braces allows it to be followed by more alphanumeric  
letters
-.. % with no intervening spaces.  Writing \samp{\$\$} creates a single  
escaped
-.. % \samp{\$}:
+:mod:`string` モジュールには、柔軟で、エンドユーザが簡単に編集できる簡単な
+構文を備えた :class:`Template` クラスが入っています。このクラスを使うと、
+ユーザがアプリケーションを修正することなしにアプリケーションの出力を
+カスタマイズできるようになります。
+
+テンプレートでは、 ``$`` と有効な Python 識別子名 (英数字とアンダースコア)
+からなるプレースホルダ名を使います。プレースホルダの周りを丸括弧で囲えば、
+間にスペースをはさまなくても後ろに英数文字を続けられます。
+``$$`` のようにすると、 ``$`` 自体をエスケープできます。

  ::

@@ -125,15 +97,11 @@
     >>> t.substitute(village='Nottingham', cause='the ditch fund')
     'Nottinghamfolk send $10 to the ditch fund.'

-:meth:`substitute` メソッドは、プレースホルダに相当する値が辞書やキーワード 
引数にない場合に :exc:`KeyError` を送出します。
-メールマージ型アプリケーションの場合、ユーザが入力するデータは不完全なこと 
があるので、欠落したデータがあるとプレースホルダをそのままにして出力する
-:meth:`safe_substitute` メソッドを使う方が適切でしょう:
-
-.. % The \method{substitute} method raises a \exception{KeyError} when a
-.. % placeholder is not supplied in a dictionary or a keyword argument. For
-.. % mail-merge style applications, user supplied data may be incomplete  
and the
-.. % \method{safe_substitute} method may be more appropriate --- it will  
leave
-.. % placeholders unchanged if data is missing:
+:meth:`substitute` メソッドは、プレースホルダに相当する値が辞書やキーワード
+引数にない場合に :exc:`KeyError` を送出します。
+メールマージ型アプリケーションの場合、ユーザが入力するデータは不完全な
+ことがあるので、欠落したデータがあるとプレースホルダをそのままにして出力す 
る
+:meth:`safe_substitute` メソッドを使う方が適切でしょう。

  ::

@@ -147,12 +115,9 @@
     'Return the unladen swallow to $owner.'

  :class:`Template` をサブクラス化すると、区切り文字を自作できます。例えば、
-画像ブラウザ用にバッチで名前を変更するユーティリティを作っていたとして、現 
在の日付や画像のシーケンス番号、ファイル形式といったプレースホルダに
-パーセント記号を選んだとします:
-
-.. % Template subclasses can specify a custom delimiter.  For example, a  
batch
-.. % renaming utility for a photo browser may elect to use percent signs  
for
-.. % placeholders such as the current date, image sequence number, or file  
format:
+画像ブラウザ用にバッチで名前を変更するユーティリティを作っていたとして、
+現在の日付や画像のシーケンス番号、ファイル形式といったプレースホルダに
+パーセント記号を選んだとします。

  ::

@@ -174,12 +139,9 @@
     img_1076.jpg --> Ashley_1.jpg
     img_1077.jpg --> Ashley_2.jpg

-テンプレートのもう一つの用途は、複数ある出力様式からのプログラムロジックの 
分離です。テンプレートを使えば、カスタムのテンプレートを XML ファイル
-用や平文テキストのレポート、 HTML で書かれた web レポート用などに置き換えら 
れます。
-
-.. % Another application for templating is separating program logic from  
the
-.. % details of multiple output formats.  This makes it possible to  
substitute
-.. % custom templates for XML files, plain text reports, and HMTL web  
reports.
+テンプレートのもう一つの用途は、複数ある出力様式からのプログラムロジックの
+分離です。テンプレートを使えば、カスタムのテンプレートを XML ファイル用や
+平文テキストのレポート、 HTML で書かれた web レポート用などに置き換えられま 
す。


  .. _tut-binary-formats:
@@ -187,18 +149,14 @@
  バイナリデータレコードの操作
  ============================

-+The :mod:`struct` module provides :func:`pack` and :func:`unpack`  
functions for
-+working with variable length binary record formats.  The following  
example shows
-+how to loop through header information in a ZIP file without using the
-+:mod:`zipfile` module.  Pack codes ``"H"`` and ``"I"`` represent two and  
four
-+byte unsigned numbers respectively.  The ``"<"`` indicates that they are
-+standard size and in little-endian byte order
-
-:mod:`struct` モジュールでは、
-可変長のバイナリレコード形式を操作する :func:`pack` や  :func:`unpack` とい 
った関数を提供しています。
-以下の例では、  :mod:`zipfile` モジュールを使わずに、ZIPファイルのヘッダ情 
報を巡回する方法を示しています
-``"H"``  と ``"I"`` というパック符号は、それぞれ2バイトと4バイトの符号無し 
整数を表しています。
-``"<"`` は、そのパック符号が通常のサイズであり、バイトオーダーがリトルエン 
ディアンであることを示しています。
+:mod:`struct` モジュールでは、可変長のバイナリレコード形式を操作する
+:func:`pack` や :func:`unpack` といった関数を提供しています。
+以下の例では、 :mod:`zipfile` モジュールを使わずに、ZIPファイルのヘッダ情報 
を
+巡回する方法を示しています
+``"H"``  と ``"I"`` というパック符号は、それぞれ2バイトと4バイトの符号無し
+整数を表しています。
+``"<"`` は、そのパック符号が通常のサイズであり、バイトオーダーが
+リトルエンディアンであることを示しています。

  ::

@@ -206,7 +164,7 @@

     data = open('myfile.zip', 'rb').read()
     start = 0
-   for i in range(3):                      # show the first 3 file headers
+   for i in range(3):                      # 最初の3ファイルのヘッダを表示 
する
         start += 14
         fields = struct.unpack('<IIIHH', data[start:start+16])
         crc32, comp_size, uncomp_size, filenamesize, extra_size = fields
@@ -217,7 +175,7 @@
         extra = data[start:start+extra_size]
         print filename, hex(crc32), comp_size, uncomp_size

-       start += extra_size + comp_size     # skip to the next header
+       start += extra_size + comp_size     # 次のヘッダまでスキップする。


  .. _tut-multi-threading:
@@ -225,23 +183,13 @@
  マルチスレッド処理
  ==================

-スレッド処理 (threading) とは、順序的な依存関係にない複数のタスクを分割する 
テクニックです。スレッド処理は、ユーザの入力を受け付けつつ、
-背後で別のタスクを動かすようなアプリケーションの応答性を高めます。主なユー 
スケースには、 I/O を別のスレッドの計算処理と並列して
-動作させるというものがあります。
-
-.. % Multi-threading
-.. % Threading is a technique for decoupling tasks which are not  
sequentially
-.. % dependent.  Threads can be used to improve the responsiveness of
-.. % applications that accept user input while other tasks run in the
-.. % background.  A related use case is running I/O in parallel with
-.. % computations in another thread.
-
-以下のコードでは、高水準のモジュール :mod:`threading`
-でメインのプログラムを動かしながら背後で別のタスクを動作させられるようにす 
る方法を示しています:
-
-.. % The following code shows how the high level
-.. % \ulink{\module{threading}}{../lib/module-threading.html} module can  
run
-.. % tasks in background while the main program continues to run:
+スレッド処理 (threading) とは、順序的な依存関係にない複数のタスクを分割する
+テクニックです。スレッドは、ユーザの入力を受け付けつつ、背後で別のタスクを
+動かすようなアプリケーションの応答性を高めます。主なユースケースには、 I/O
+を別のスレッドの計算処理と並列して動作させるというものがあります。
+
+以下のコードでは、高水準のモジュール :mod:`threading` でメインのプログラム 
を
+動かしながら背後で別のタスクを動作させられるようにする方法を示しています。

  ::

@@ -265,30 +213,18 @@
     background.join()    # Wait for the background task to finish
     print 'Main program waited until background was done.'

-マルチスレッドアプリケーションを作る上で最も難しい問題は、データやリソース 
を共有するスレッド間の調整 (coordination)
-です。この問題を解決するため、 :mod:`threading` モジュールではロックやイベ 
ント、状態変数、セマフォ
-といった数々の同期プリミティブを提供しています。
-
-.. % The principal challenge of multi-threaded applications is coordinating
-.. % threads that share data or other resources.  To that end, the  
threading
-.. % module provides a number of synchronization primitives including  
locks,
-.. % events, condition variables, and semaphores.
-
-こうしたツールは強力な一方、ちょっとした設計上の欠陥で再現困難な問題を引き 
起こすことがあります。
-したがって、タスク間調整では :mod:`Queue`
-モジュールを使って他のスレッドから一つのスレッドにリクエストを送り込み、
-一つのリソースへのアクセスをできるだけ一つのスレッドに集中させるアプローチ 
を勧めます。
-スレッド間の通信や調整に :class:`Queue.Queue`
-オブジェクトを使うと、設計が容易になり、可読性が高まり、信頼性が増します。
-
-.. % While those tools are powerful, minor design errors can result in
-.. % problems that are difficult to reproduce.  So, the preferred approach
-.. % to task coordination is to concentrate all access to a resource
-.. % in a single thread and then use the
-.. % \ulink{\module{Queue}}{../lib/module-Queue.html} module to feed that
-.. % thread with requests from other threads.  Applications using
-.. % \class{Queue} objects for inter-thread communication and coordination
-.. % are easier to design, more readable, and more reliable.
+マルチスレッドアプリケーションを作る上で最も難しい問題は、データやリソース 
を
+共有するスレッド間の調整 (coordination)です。
+この問題を解決するため、 :mod:`threading` モジュールではロックやイベント、
+状態変数、セマフォといった数々の同期プリミティブを提供しています。
+
+こうしたツールは強力な一方、ちょっとした設計上の欠陥で再現困難な問題を
+引き起こすことがあります。
+したがって、タスク間調整では :mod:`Queue` モジュールを使って他のスレッドか 
ら
+一つのスレッドにリクエストを送り込み、一つのリソースへのアクセスをできるだ 
け
+一つのスレッドに集中させるアプローチを勧めます。
+スレッド間の通信や調整に :class:`Queue.Queue` オブジェクトを使うと、
+設計が容易になり、可読性が高まり、信頼性が増します。


  .. _tut-logging:
@@ -296,14 +232,9 @@
  ログ記録
  ========

-:mod:`logging` モジュールでは、
-数多くの機能をそなえた柔軟性のあるログ記録システムを提供しています。最も簡 
単な使い方では、ログメッセージをファイルや ``sys.stderr``
-に送信します:
-
-.. % Logging
-.. % The \ulink{\module{logging}}{../lib/module-logging.html} module offers
-.. % a full featured and flexible logging system.  At its simplest, log
-.. % messages are sent to a file or to \code{sys.stderr}:
+:mod:`logging` モジュールでは、数多くの機能をそなえた柔軟性のあるログ記録
+システムを提供しています。最も簡単な使い方では、ログメッセージをファイルや
+``sys.stderr`` に送信します。

  ::

@@ -320,24 +251,15 @@
     ERROR:root:Error occurred
     CRITICAL:root:Critical error -- shutting down

-デフォルトでは、単なる情報やデバッグメッセージの出力は抑制され、出力は標準 
エラーに送信されます。選択可能な送信先には、email、データグラム、ソケット、
-HTTP サーバへの送信などがあります。新たにフィルタを作成する 
と、 :const:`DEBUG`, :const:`INFO`,
-:const:`WARNING`,  :const:`ERROR`, :const:`CRITICAL` といったメッセージのプ 
ライオリティに
-従って配送先を変更できます。
-
-.. % By default, informational and debugging messages are suppressed and  
the
-.. % output is sent to standard error.  Other output options include  
routing
-.. % messages through email, datagrams, sockets, or to an HTTP Server.  New
-.. % filters can select different routing based on message priority:
-.. % \constant{DEBUG}, \constant{INFO}, \constant{WARNING},  
\constant{ERROR},
-.. % and \constant{CRITICAL}.
-
-ログ記録システムは Python から直接設定できますし、アプリケーションを変更し 
なくてもカスタマイズできるよう、ユーザが編集できる設定ファイル
-でも設定できます。
-
-.. % The logging system can be configured directly from Python or can be
-.. % loaded from a user editable configuration file for customized logging
-.. % without altering the application.
+デフォルトでは、単なる情報やデバッグメッセージの出力は抑制され、出力は
+標準エラーに送信されます。選択可能な送信先には、email、データグラム、ソケッ 
ト、
+HTTP サーバへの送信などがあります。新たにフィルタを作成する 
と、 :const:`DEBUG`,
+:const:`INFO`, :const:`WARNING`, :const:`ERROR`, :const:`CRITICAL` といった
+メッセージのプライオリティに従って配送先を変更できます。
+
+ログ記録システムは Python から直接設定できますし、アプリケーションを変更
+しなくてもカスタマイズできるよう、ユーザが編集できる設定ファイルでも
+設定できます。


  .. _tut-weak-references:
@@ -345,35 +267,37 @@
  弱参照
  ======

-Python は自動的にメモリを管理します (ほとんどのオブジェクトは参照カウント方 
式で管理し、
-ガベージコレクション(:term:`garbage collection`)で循環参照を除去します)。
+Python は自動的にメモリを管理します (ほとんどのオブジェクトは参照カウント方 
式で
+管理し、ガベージコレクション(:term:`garbage collection`)で循環参照を除去し 
ます)。
  オブジェクトに対する最後の参照がなくなってしばらくするとメモリは解放されま 
す。

-.. % Weak References
-
  このようなアプローチはほとんどのアプリケーションでうまく動作しますが、
-中にはオブジェクトをどこか別の場所で利用するまでの間だけ追跡しておきたい場 
合もあります。
-残念ながら、オブジェクトを追跡するだけでオブジェクトに対する恒久的な参照を 
作ることになってしまいます。
-:mod:`weakref` モジュールでは、オブジェクトへの参照を作らずに追跡するための 
ツールを提供しています。
+中にはオブジェクトをどこか別の場所で利用している間だけ追跡しておきたい場合 
も
+あります。
+残念ながら、オブジェクトを追跡するだけでオブジェクトに対する恒久的な参照を 
作る
+ことになってしまいます。
+:mod:`weakref` モジュールでは、オブジェクトへの参照を作らずに追跡するための
+ツールを提供しています。
  弱参照オブジェクトが不要になると、弱参照 (weakref) テーブルから自動的に除去 
され、
-コールバック関数がトリガされます。弱参照を使う典型的な応用例には、作成コス 
トの大きいオブジェクトのキャッシュがあります::
+コールバック関数がトリガされます。弱参照を使う典型的な応用例には、作成コス 
トの
+大きいオブジェクトのキャッシュがあります。 ::

     >>> import weakref, gc
     >>> class A:
     ...     def __init__(self, value):
-   ...             self.value = value
+   ...         self.value = value
     ...     def __repr__(self):
-   ...             return str(self.value)
+   ...         return str(self.value)
     ...
-   >>> a = A(10)                   # create a reference
+   >>> a = A(10)                   # 参照を作成する.
     >>> d = weakref.WeakValueDictionary()
-   >>> d['primary'] = a            # does not create a reference
-   >>> d['primary']                # fetch the object if it is still alive
+   >>> d['primary'] = a            # 参照を作成しない.
+   >>> d['primary']                # オブジェクトが生きていれば取得する.
     10
-   >>> del a                       # remove the one reference
-   >>> gc.collect()                # run garbage collection right away
+   >>> del a                       # 参照を1つ削除する.
+   >>> gc.collect()                # ガベージコレクションを実行する.
     0
-   >>> d['primary']                # entry was automatically removed
+   >>> d['primary']                # エントリが自動的に削除されている.
     Traceback (most recent call last):
       File "<stdin>", line 1, in <module>
         d['primary']                # entry was automatically removed
@@ -387,26 +311,15 @@
  リスト操作のためのツール
  ========================

-多くのデータ構造は、組み込みリスト型を使った実装で事足ります。とはいえ、時 
には組み込みリストとは違うパフォーマンス上のトレードオフを
-持つような実装が必要になこともあります。
-
-.. % Tools for Working with Lists
-.. % Many data structure needs can be met with the built-in list type.
-.. % However, sometimes there is a need for alternative implementations
-.. % with different performance trade-offs.
-
-:mod:`array` モジュールでは、
-同じ形式のデータだけをコンパクトに保存できる、リスト型に似 
た :class:`array()` オブジェクトを提供しています。
-以下の例では、通常要素あたり
-16 バイトを必要とする Python 整数型のリストの代りに、 2 バイトの符号無しの  
2 進数 (タイプコード ``"H"``)
-を使っている数値配列を示します:
-
-.. % The \ulink{\module{array}}{../lib/module-array.html} module provides  
an
-.. % \class{array()} object that is like a list that stores only homogenous
-.. % data and stores it more compactly.  The following example shows an  
array
-.. % of numbers stored as two byte unsigned binary numbers (typecode
-.. % \code{"H"}) rather than the usual 16 bytes per entry for regular lists
-.. % of python int objects:
+多くのデータ構造は、組み込みリスト型を使った実装で事足ります。とはいえ、
+時には組み込みリストとは違うパフォーマンス上のトレードオフを持つような
+実装が必要になこともあります。
+
+:mod:`array` モジュールでは、同じ形式のデータだけをコンパクトに保存できる、
+リスト型に似た :class:`array()` オブジェクトを提供しています。
+以下の例では、通常 1 要素あたり 16 バイトを必要とする Python 整数型のリスト 
の
+代りに、2 バイトの符号無しの 2 進数 (タイプコード ``"H"``)を使っている
+数値配列を示します。

  ::

@@ -417,16 +330,11 @@
     >>> a[1:3]
     array('H', [10, 700])

-:mod:`collections` モジュールでは、
-リスト型に似た :class:`deque()` オブジェクトを提供していま 
す。 :class:`deque()`
-オブジェクトでは、データの追加と左端からの取り出しが高速な半面、中間にある 
値の検索が低速になります。
-こうしたオブジェクトはキューの実装や幅優先(breadth first)のツリー探索に向い 
ています:
-
-.. % The \ulink{\module{collections}}{../lib/module-collections.html}  
module
-.. % provides a \class{deque()} object that is like a list with faster
-.. % appends and pops from the left side but slower lookups in the middle.
-.. % These objects are well suited for implementing queues and breadth  
first
-.. % tree searches:
+:mod:`collections` モジュールでは、リスト型に似た :class:`deque()`
+オブジェクトを提供しています。 :class:`deque()` オブジェクトでは、
+データの追加と左端からの取り出しが高速な半面、中間にある値の検索が低速に
+なります。こうしたオブジェクトはキューの実装や幅優先のツリー探索に
+向いています。

  ::

@@ -444,12 +352,8 @@
                 return m
             unsearched.append(m)

-リストの代わりの実装以外にも、標準ライブラリにはソート済みのリストを操作す 
るための関数を備えた :mod:`bisect`
-のようなツールも提供しています:
-
-.. % In addition to alternative list implementations, the library also  
offers
-.. % other tools such as the  
\ulink{\module{bisect}}{../lib/module-bisect.html}
-.. % module with functions for manipulating sorted lists:
+リストの代わりの実装以外にも、標準ライブラリにはソート済みのリストを
+操作するための関数を備えた :mod:`bisect` のようなツールも提供しています。

  ::

@@ -459,15 +363,10 @@
     >>> scores
     [(100, 'perl'), (200, 'tcl'), (300, 'ruby'), (400, 'lua'),  
(500, 'python')]

-:mod:`heapq` モジュールでは、
-通常のリストでヒープを実装するための関数を提供しています。ヒープでは、最も 
低い値をもつエントリがつねにゼロの位置に配置
-されます。ヒープは、毎回リストをソートすることなく、最小の値をもつ要素に繰 
り返しアクセスするようなアプリケーションで便利です:
-
-.. % The \ulink{\module{heapq}}{../lib/module-heapq.html} module provides
-.. % functions for implementing heaps based on regular lists.  The lowest
-.. % valued entry is always kept at position zero.  This is useful for
-.. % applications which repeatedly access the smallest element but do not
-.. % want to run a full list sort:
+:mod:`heapq` モジュールでは、通常のリストでヒープを実装するための関数を
+提供しています。ヒープでは、最も低い値をもつエントリがつねにゼロの位置に
+配置されます。ヒープは、毎回リストをソートすることなく、最小の値をもつ要素 
に
+繰り返しアクセスするようなアプリケーションで便利です。

  ::

@@ -484,34 +383,21 @@
  10 進浮動小数演算
  =================

-:mod:`decimal` では、 10 進浮動小数の
-算術演算をサポートする :class:`Decimal` データ型を提供しています。組み込み 
の 2 進浮動小数の実装である :class:`float`
+:mod:`decimal` では、 10 進浮動小数の算術演算をサポートす 
る :class:`Decimal`
+データ型を提供しています。組み込みの 2 進浮動小数の実装であ 
る :class:`float`
  に比べて、このクラスがとりわけ便利なのは、

-* 厳密な 10 進表記や計算精度の制御、
+* 財務アプリケーションやその他の正確な10進表記が必要なアプリケーション、
+* 精度の制御、
  * 法的または規制上の理由に基づく値丸めの制御、
-* 有効桁数の追跡が必要になる金融計算などのアプリケーション、
+* 有効桁数の追跡が必要になる場合、
  * ユーザが手計算の結果と同じ演算結果を期待するようなアプリケーション

  の場合です。

-.. % Decimal Floating Point Arithmetic
-.. % The \ulink{\module{decimal}}{../lib/module-decimal.html} module  
offers a
-.. % \class{Decimal} datatype for decimal floating point arithmetic.   
Compared to
-.. % the built-in \class{float} implementation of binary floating point,  
the new
-.. % class is especially helpful for financial applications and other uses  
which
-.. % require exact decimal representation, control over precision, control  
over
-.. % rounding to meet legal or regulatory requirements, tracking of  
significant
-.. % decimal places, or for applications where the user expects the  
results to
-.. % match calculations done by hand.
-
-例えば、 70 セントの電話代にかかる 5% の税金を計算しようとすると、 10 進の 
浮動小数点値と 2 進の浮動小数点値では違う結果になってしまいます。
-例えば以下のような例では、計算結果を四捨五入してセント単位にしようとすると 
違いがはっきり現れます:
-
-.. % For example, calculating a 5\%{} tax on a 70 cent phone charge gives
-.. % different results in decimal floating point and binary floating point.
-.. % The difference becomes significant if the results are rounded to the
-.. % nearest cent:
+例えば、 70 セントの電話代にかかる 5% の税金を計算しようとすると、
+10 進の浮動小数点値と 2 進の浮動小数点値では違う結果になってしまいます。
+計算結果を四捨五入してセント単位にしようとすると違いがはっきり現れます。

  ::

@@ -521,21 +407,13 @@
     >>> .70 * 1.05
     0.73499999999999999

-:class:`Decimal` を使った計算では、末尾桁のゼロが保存されており、有効数字 
2桁の被乗数から自動的に有効数字を  4
-桁と判断しています。 :class:`Decimal` は手計算と同じ方法で計算を行い、 2 進 
浮動小数点が 10 進小数成分を正確に
-表現できないことによって起きる問題を回避しています。
-
-.. % The \class{Decimal} result keeps a trailing zero, automatically  
inferring four
-.. % place significance from multiplicands with two place significance.   
Decimal reproduces
-.. % mathematics as done by hand and avoids issues that can arise when  
binary
-.. % floating point cannot exactly represent decimal quantities.
-
-:class:`Decimal` クラスは厳密な値を表現できるため、2 進浮動小数点数では期待 
通りに計算できないようなモジュロの計算や等値テストも実現
-できます:
-
-.. % Exact representation enables the \class{Decimal} class to perform
-.. % modulo calculations and equality tests that are unsuitable for binary
-.. % floating point:
+:class:`Decimal` を使った計算では、末尾桁のゼロが保存されており、有効数字 
2桁の
+被乗数から自動的に有効数字を 4 桁と判断しています。 :class:`Decimal` は手計 
算と
+同じ方法で計算を行い、 2 進浮動小数点が 10 進小数成分を正確に表現できないこ 
とに
+よって起きる問題を回避しています。
+
+:class:`Decimal` クラスは厳密な値を表現できるため、2 進浮動小数点数では
+期待通りに計算できないようなモジュロの計算や等値テストも実現できます。

  ::

@@ -549,10 +427,7 @@
     >>> sum([0.1]*10) == 1.0
     False

-:mod:`decimal` モジュールを使うと、必要なだけの精度で算術演算を行えます:
-
-.. % The \module{decimal} module provides arithmetic with as much  
precision as
-.. % needed:
+:mod:`decimal` モジュールを使うと、必要なだけの精度で算術演算を行えます。

  ::




Pythonjp-checkins メーリングリストの案内
Zurück zum Archiv-Index