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: Update site.setquit docstring
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brian.curtin Nosy List: brian.curtin, eric.araujo, l0nwlf
Priority: normal Keywords: patch

Created on 2010-04-10 13:15 by eric.araujo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
quit-doc.diff eric.araujo, 2010-04-10 21:23
Messages (6)
msg102777 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-04-10 13:15
Hello

The docstring for site.setquit was not updated when  r42948 changed quit and exit from strings to callables. Attached patch fixes it.

By the way, is “Library” the right component for docstring-related bugs or is it “Documentation”?

Regards
msg102793 - (view) Author: Shashwat Anand (l0nwlf) Date: 2010-04-10 21:21
merwok I think you forgot to attach patch
msg102794 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-04-10 21:23
Hey, I do that all the time with email attachments! (They made a Thunderbird™ extension for that.)

Thanks ;)
msg102795 - (view) Author: Shashwat Anand (l0nwlf) Date: 2010-04-10 21:35
looks fine to me. However I heard trunk will be/is frozen.
msg102988 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2010-04-12 23:34
Committed in r80022 and r80023. Thanks.
msg102992 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-04-13 00:02
Answer to myself by Brian Curtin on the chatroom:

Him: it’s in the code so i would file it like code. "Library" for py modules, "Extension Modules" if its a C extension

Me: Your answer implies that components are mapped to directories, not areas (i.e. Library == Lib, documentation == Doc, not the general concept of documentation).
History
Date User Action Args
2022-04-11 14:56:59adminsetgithub: 52611
2010-04-13 00:02:39eric.araujosetmessages: + msg102992
2010-04-12 23:34:56brian.curtinsetstatus: open -> closed
priority: normal
type: behavior

assignee: brian.curtin

nosy: + brian.curtin
messages: + msg102988
resolution: fixed
stage: resolved
2010-04-10 21:35:28l0nwlfsetmessages: + msg102795
2010-04-10 21:23:38eric.araujosetfiles: + quit-doc.diff
keywords: + patch
messages: + msg102794
2010-04-10 21:21:08l0nwlfsetnosy: + l0nwlf
messages: + msg102793
2010-04-10 13:15:41eric.araujocreate