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: Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html
Type: behavior Stage: needs patch
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, eli.bendersky, georg.brandl, ncoghlan, neaj
Priority: normal Keywords: patch

Created on 2011-01-14 06:04 by neaj, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue10902.py27.1.patch eli.bendersky, 2011-01-14 07:27
Messages (9)
msg126231 - (view) Author: Jean Jordaan (neaj) Date: 2011-01-14 06:04
http://docs.python.org/library/pdb.html states "The run_* functions and set_trace() are aliases" but the functions in question are "run", "runeval" and "runcall": no underscores.
msg126237 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2011-01-14 07:27
Here's a patch that fixes it to "run*". 
If it's OK I will commit it and port to py3k where the problem also exists
msg126239 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2011-01-14 07:39
Yep, go ahead.
msg126240 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2011-01-14 08:13
Committed to release27-maint r87992
msg126241 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2011-01-14 08:21
That's the wrong way of porting though... py3k first, then 2.7 and 3.1.
msg126243 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2011-01-14 08:26
Committed to py3k r87993
msg126244 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2011-01-14 08:30
Ah, true - I forgot svnmerge for 27-maint was based on the py3k branch.
msg126245 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2011-01-14 08:40
Georg, thanks - will keep that in mind. Here I started with 2.7 since this is what the user reported on. I plan to have it committed to all 3 branches today anyhow.
msg126247 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2011-01-14 08:56
Committed to release31 in r87995 (with svnmerge)
History
Date User Action Args
2022-04-11 14:57:11adminsetgithub: 55111
2011-01-14 08:56:01eli.benderskysetstatus: open -> closed
nosy: georg.brandl, ncoghlan, neaj, eli.bendersky, docs@python
messages: + msg126247
2011-01-14 08:40:53eli.benderskysetnosy: georg.brandl, ncoghlan, neaj, eli.bendersky, docs@python
messages: + msg126245
2011-01-14 08:30:13ncoghlansetnosy: georg.brandl, ncoghlan, neaj, eli.bendersky, docs@python
messages: + msg126244
2011-01-14 08:26:07eli.benderskysetnosy: georg.brandl, ncoghlan, neaj, eli.bendersky, docs@python
messages: + msg126243
2011-01-14 08:21:24georg.brandlsetnosy: + georg.brandl
messages: + msg126241
2011-01-14 08:13:42eli.benderskysetresolution: fixed
messages: + msg126240
nosy: ncoghlan, neaj, eli.bendersky, docs@python
2011-01-14 07:39:13ncoghlansetnosy: ncoghlan, neaj, eli.bendersky, docs@python
messages: + msg126239
2011-01-14 07:27:45eli.benderskysetfiles: + issue10902.py27.1.patch

nosy: + ncoghlan
messages: + msg126237

keywords: + patch
2011-01-14 07:15:38eli.benderskysetnosy: + eli.bendersky

type: performance -> behavior
stage: needs patch
2011-01-14 06:04:05neajcreate