Add note about profile fix.

This commit is contained in:
Guido van Rossum 2001-10-04 10:19:00 +00:00
parent 3899d74c10
commit c4b09b4417
1 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,11 @@ Library
- doctest now excludes functions and classes not defined by the module
being tested, thanks to Tim Hochberg.
- profile now produces correct output in situations where an exception
raised in Python is cleared by C code (e.g. hasattr()). This used
to cause wrong output, including spurious claims of recursive
functions and attribution of time spent to the wrong function.
- quopri's encode and decode methods take an optional header parameter,
which indicates whether output is intended for the header 'Q' encoding.