Errata

Python Standard Library

Errata for Python Standard Library

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page xv

reads:

For updates and more informaiton, see
http://www.pythonware.com/people/fredrik/library-book.htm.

should read:

For updates and more information, see
http://www.pythonware.com/people/fredrik/librarybook.htm.

Anonymous   
Printed
Page 227
4th line in Example 12-2

"getgid" should be changed to "getuid" in
print pwd.getpwuid(os.getgid())
should be
print pwd.getpwuid(os.getuid())

Anonymous