This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: docstring error
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, smichr
Priority: normal Keywords:

Created on 2005-04-29 22:51 by smichr, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25181 - (view) Author: Christopher Smith (smichr) Date: 2005-04-29 22:51
In Lib/test/test_binop.py, two double quotes are missing 
at the beginning of the following function's docstring:

def __rdivmod__(self, other):
        "Divide two Rats, returning quotient and remainder 
(reversed args)."""


(I know it's minor, but you said "keep it under your pillow" ;-)

Actually. I found it while testing out a comment stripping 
program that uses the tokenize module.

/c
msg25182 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-04-30 05:53
Logged In: YES 
user_id=357491

Fixed in rev. 1.8 for 2.5 and rev. 1.7.20.1 for 2.4 .

Thanks, Christopher.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41926
2005-04-29 22:51:47smichrcreate