[Python-checkins] python/dist/src/Lib os.py,1.57,1.58

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Tue, 02 Jul 2002 14:28:06 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv30451

Modified Files:
	os.py 
Log Message:
Be consistent with the functions in the posix/nt module:  docstrings
don't include a " -> None" for functions that have no return value.


Index: os.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/os.py,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** os.py	1 Jun 2002 14:18:46 -0000	1.57
--- os.py	2 Jul 2002 21:28:04 -0000	1.58
***************
*** 199,203 ****
  
  def makedirs(name, mode=0777):
!     """makedirs(path [, mode=0777]) -> None
  
      Super-mkdir; create a leaf directory and all intermediate ones.
--- 199,203 ----
  
  def makedirs(name, mode=0777):
!     """makedirs(path [, mode=0777])
  
      Super-mkdir; create a leaf directory and all intermediate ones.
***************
*** 215,219 ****
  
  def removedirs(name):
!     """removedirs(path) -> None
  
      Super-rmdir; remove a leaf directory and empty all intermediate
--- 215,219 ----
  
  def removedirs(name):
!     """removedirs(path)
  
      Super-rmdir; remove a leaf directory and empty all intermediate
***************
*** 237,241 ****
  
  def renames(old, new):
!     """renames(old, new) -> None
  
      Super-rename; create directories as necessary and delete any left
--- 237,241 ----
  
  def renames(old, new):
!     """renames(old, new)
  
      Super-rename; create directories as necessary and delete any left