pytho****@googl*****
pytho****@googl*****
2011年 3月 19日 (土) 20:35:46 JST
2 new revisions: Revision: 82484a269b2b Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Mar 19 04:16:42 2011 Log: 2.6.6: mac.rst, macos.rst, autogil.rst... http://code.google.com/p/python-doc-ja/source/detail?r=82484a269b2b Revision: bda9e64d6f6b Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Mar 19 04:20:40 2011 Log: 2.6.6: email-examples.rst, ossaudiodev.rst, sched.rst, site.rst, termi... http://code.google.com/p/python-doc-ja/source/detail?r=bda9e64d6f6b ============================================================================== Revision: 82484a269b2b Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Mar 19 04:16:42 2011 Log: 2.6.6: mac.rst, macos.rst, autogil.rst Python 3.x で廃止されたモジュールに関する注記をまとめて修正 http://code.google.com/p/python-doc-ja/source/detail?r=82484a269b2b Modified: /library/autogil.rst /library/mac.rst /library/macos.rst ======================================= --- /library/autogil.rst Thu Mar 12 07:24:02 2009 +++ /library/autogil.rst Sat Mar 19 04:16:42 2011 @@ -14,9 +14,9 @@ をロックしたり、ロックの解除をしたりするための関数 :func:`installAutoGIL` を提供します。 -.. warning:: - - このモジュールは 3.0 で削除されます。 +.. note:: + + このモジュールは Python 3.x で削除されました。 .. exception:: AutoGILError ======================================= --- /library/mac.rst Thu Feb 19 08:15:42 2009 +++ /library/mac.rst Sat Mar 19 04:16:42 2011 @@ -10,9 +10,9 @@ も参照してください。また HOWTO の :ref:`using-on-mac` は Mac 固有の Python プログラミングについての一般的な入門編になっています。 -.. warning:: - - これらのモジュールは撤廃され 3.0 では無くなります。 +.. note:: + + これらのモジュールは廃止され Python 3.x では削除されました。 .. toctree:: ======================================= --- /library/macos.rst Sat Nov 27 10:59:46 2010 +++ /library/macos.rst Sat Mar 19 04:16:42 2011 @@ -11,9 +11,9 @@ セスを提供します。例えば、インタプリタのイベントループ関数などです。十\ 分注意して利用してください。 -.. warning:: - - このモジュールは 3.0 で削除されます。 +.. note:: + + このモジュールは Python 3.x で削除されました。 モジュール名が大文字で始まることに注意してください。これは昔からの約束\ ============================================================================== Revision: bda9e64d6f6b Author: Nozomu Kaneko <nozom****@gmail*****> Date: Sat Mar 19 04:20:40 2011 Log: 2.6.6: email-examples.rst, ossaudiodev.rst, sched.rst, site.rst, termios.rst 軽微な変更をまとめて修正 http://code.google.com/p/python-doc-ja/source/detail?r=bda9e64d6f6b Modified: /library/email-examples.rst /library/ossaudiodev.rst /library/sched.rst /library/site.rst /library/termios.rst ======================================= --- /library/email-examples.rst Sun Mar 1 00:54:36 2009 +++ /library/email-examples.rst Sat Mar 19 04:20:40 2011 @@ -1,3 +1,5 @@ +.. _email-examples: + :mod:`email`: 使用例 ---------------------- ======================================= --- /library/ossaudiodev.rst Sun Nov 14 15:57:39 2010 +++ /library/ossaudiodev.rst Sat Mar 19 04:20:40 2011 @@ -78,7 +78,7 @@ この代わりに :meth:`setparameters` メソッドを呼び出せば、三つのオーディオパ ラメタを一度で設定できます。 :meth:`setparameters` は便利ですが、多くの状況で柔軟性に欠けるでしょう。 -:func:`open` の返すオーディオデバイスオブジェクトには以下のメソッドおよび (読み出し専用の)属性があります: +:func:`.open` の返すオーディオデバイスオブジェクトには以下のメソッドおよび (読み出し専用の)属性があります: .. method:: oss_audio_device.close() ======================================= --- /library/sched.rst Sat Nov 27 10:59:46 2010 +++ /library/sched.rst Sat Mar 19 04:20:40 2011 @@ -100,7 +100,7 @@ .. method:: scheduler.cancel(event) キューからイベントを消去します。もし *event* がキューにある現在のイベン トでないならば、 - このメソッドは :exc:`RuntimeError` を送出します。 + このメソッドは :exc:`ValueError` を送出します。 .. method:: scheduler.empty() ======================================= --- /library/site.rst Mon May 31 01:54:03 2010 +++ /library/site.rst Sat Mar 19 04:20:40 2011 @@ -123,5 +123,5 @@ ディレクトリを sys.path に追加して、その中の pth ファイルも処理する。 -XXX Update documentation -XXX document python -m site --user-base --user-site +.. XXX Update documentation +.. XXX document python -m site --user-base --user-site ======================================= --- /library/termios.rst Sat Nov 27 10:59:46 2010 +++ /library/termios.rst Sat Mar 19 04:20:40 2011 @@ -93,7 +93,7 @@ :func:`tcgetattr` と :keyword:`try` ... :keyword:`finally` 文によるテクニックが使われています:: - def getpass(prompt = "Password: "): + def getpass(prompt="Password: "): import termios, sys fd = sys.stdin.fileno() old = termios.tcgetattr(fd)