[issue10594] Typo in PyList_New doc.

2010-12-01 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r86914. -- nosy: +georg.brandl resolution: accepted -> fixed status: open -> closed ___ Python tracker ___ _

[issue10594] Typo in PyList_New doc.

2010-12-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: You don't need to backport, we'll do it ourselves. Can someone from the doc team please review/commit? -- assignee: eli.bendersky -> d...@python nosy: +pitrou stage: -> patch review ___ Python tracker

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: This is fine. Go ahead and backport if you feel so inclined. -- assignee: d...@python -> eli.bendersky nosy: +rhettinger priority: normal -> low resolution: -> accepted versions: -Python 2.6 ___ Python tracker

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread INADA Naoki
INADA Naoki added the comment: OK, please. On Wed, Dec 1, 2010 at 12:46 PM, Eli Bendersky wrote: > > Eli Bendersky added the comment: > > Thanks for the report, > > Attaching a patch for Doc/c-api/list.rst in Python 3.2 > If this is OK, I can backport the patch to other versions as well. > >

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread Eli Bendersky
Eli Bendersky added the comment: Thanks for the report, Attaching a patch for Doc/c-api/list.rst in Python 3.2 If this is OK, I can backport the patch to other versions as well. -- keywords: +patch nosy: +eli.bendersky Added file: http://bugs.python.org/file19889/issue10594.py32.1.patc

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread INADA Naoki
INADA Naoki added the comment: http://docs.python.org/c-api/list.html#PyList_GetItem > Return the object at position pos in the list pointed to by p s/pos/index/ -- ___ Python tracker _

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread INADA Naoki
INADA Naoki added the comment: http://docs.python.org/c-api/list.html#PyList_GetItem > Return the object at position pos in the list pointed to by p s/p/list/ -- ___ Python tracker

[issue10594] Typo in PyList_New doc.

2010-11-30 Thread INADA Naoki
New submission from INADA Naoki : http://docs.python.org/c-api/list.html#PyList_New > Note: If length is greater than zero, ... s/length/len/ -- assignee: d...@python components: Documentation messages: 122974 nosy: d...@python, naoki priority: normal severity: normal status: open title