[Python-checkins] r80266 - in python/branches/py3k: Doc/library/os.rst Doc/library/signal.rst

brian.curtin python-checkins at python.org
Tue Apr 20 17:28:06 CEST 2010


Author: brian.curtin
Date: Tue Apr 20 17:28:06 2010
New Revision: 80266

Log:
Updated version numbers from 2.7 to 3.2

Merged revisions 80265 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80265 | brian.curtin | 2010-04-20 10:23:18 -0500 (Tue, 20 Apr 2010) | 2 lines
  
  Add version info for os.kill and signal changes from #1220212.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/os.rst
   python/branches/py3k/Doc/library/signal.rst

Modified: python/branches/py3k/Doc/library/os.rst
==============================================================================
--- python/branches/py3k/Doc/library/os.rst	(original)
+++ python/branches/py3k/Doc/library/os.rst	Tue Apr 20 17:28:06 2010
@@ -1500,6 +1500,8 @@
    will be set to *sig*. The Windows version of :func:`kill` additionally takes
    process handles to be killed.
 
+   .. versionadded:: 3.2 Windows support
+
 
 .. function:: killpg(pgid, sig)
 

Modified: python/branches/py3k/Doc/library/signal.rst
==============================================================================
--- python/branches/py3k/Doc/library/signal.rst	(original)
+++ python/branches/py3k/Doc/library/signal.rst	Tue Apr 20 17:28:06 2010
@@ -77,16 +77,18 @@
 .. data:: CTRL_C_EVENT
 
    The signal corresponding to the CTRL+C keystroke event.
-
    Availability: Windows.
 
+   .. versionadded:: 3.2
+
 
 .. data:: CTRL_BREAK_EVENT
 
    The signal corresponding to the CTRL+BREAK keystroke event.
-
    Availability: Windows.
 
+   .. versionadded:: 3.2
+
 
 .. data:: NSIG
 


More information about the Python-checkins mailing list