[Python-checkins] r70963 - python/trunk/Lib/glob.py

georg.brandl python-checkins at python.org
Wed Apr 1 19:46:01 CEST 2009


Author: georg.brandl
Date: Wed Apr  1 19:46:01 2009
New Revision: 70963

Log:
#5655: fix docstring oversight.

Modified:
   python/trunk/Lib/glob.py

Modified: python/trunk/Lib/glob.py
==============================================================================
--- python/trunk/Lib/glob.py	(original)
+++ python/trunk/Lib/glob.py	Wed Apr  1 19:46:01 2009
@@ -16,7 +16,7 @@
     return list(iglob(pathname))
 
 def iglob(pathname):
-    """Return a list of paths matching a pathname pattern.
+    """Return an iterator which yields the paths matching a pathname pattern.
 
     The pattern may contain simple shell-style wildcards a la fnmatch.
 


More information about the Python-checkins mailing list