[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-27 Thread Brett Cannon

Brett Cannon added the comment:

Thanks, Alejandro, for the report and Anish for the patch (who I added to 
Misc/ACKS)!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-27 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 003f1f60a09c by Brett Cannon in branch '3.5':
Issue #12484: Remove a mention of Py_InitModule() and 
_PyImport_FixupExtension().
https://hg.python.org/cpython/rev/003f1f60a09c

New changeset f4aee46c79ca by Brett Cannon in branch 'default':
Merge for issue #12484
https://hg.python.org/cpython/rev/f4aee46c79ca

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-24 Thread Anish Shah

Anish Shah added the comment:

@brett.cannon Thanks! I have updated the patch. I removed 
"_PyImport_FixupExtension" from docs.

--
Added file: http://bugs.python.org/file41404/issue12484.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-23 Thread Anish Shah

Anish Shah added the comment:

Can anyone review the patch?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-23 Thread Berker Peksag

Berker Peksag added the comment:

The patch looks good to me.

_PyImport_FixupExtension does not exist in Python 3, but it's still documented 
in Doc/c-api/import.rst. We need to remove it, too.

(Or we could document _PyImport_FixupExtensionObject since there are already 
documented internal functions in that file.)

--
nosy: +berker.peksag, brett.cannon
stage: needs patch -> patch review

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Sorry, another week for 3.4

--
versions: +Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Anish Shah

Anish Shah added the comment:

will try to create a patch for this issue in a day. Thanks!

--
nosy: +Anish.Shah

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Anish Shah

Changes by Anish Shah :


--
keywords: +patch
Added file: 
http://bugs.python.org/file41310/remove_Py_InitModule_from_docs.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Zachary Ware

Changes by Zachary Ware :


--
versions: +Python 3.4, Python 3.5, Python 3.6 -Python 3.1, Python 3.2, Python 
3.3

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Terry J. Reedy

Terry J. Reedy added the comment:

3.4 is also on security fix only status.

--
nosy: +terry.reedy
versions:  -Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2015-12-14 Thread Terry J. Reedy

Changes by Terry J. Reedy :


--
stage:  -> needs patch
type:  -> behavior

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2011-07-04 Thread Senthil Kumaran

Changes by Senthil Kumaran sent...@uthcode.com:


--
nosy: +orsenthil

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12484
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2011-07-03 Thread Alejandro Santos

New submission from Alejandro Santos alej...@alejolp.com:

While the Py_InitModule does not exists on Py3k it is still mentioned on the 
docs:

http://docs.python.org/py3k/extending/extending.html#keyword-parameters-for-extension-functions
http://docs.python.org/py3k/extending/windows.html#a-cookbook-approach
http://docs.python.org/py3k/faq/extending.html#what-does-systemerror-pyimport-fixupextension-module-yourmodule-not-loaded-mean

--
assignee: docs@python
components: Documentation
messages: 139728
nosy: alejolp, docs@python
priority: normal
severity: normal
status: open
title: The Py_InitModule functions no longer exist, but remain in the docs
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12484
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12484] The Py_InitModule functions no longer exist, but remain in the docs

2011-07-03 Thread Alejandro Santos

Alejandro Santos alej...@alejolp.com added the comment:

The call is also present on the older 3.1 and dev release of the docs:

http://docs.python.org/release/3.1.3/extending/extending.html#keyword-parameters-for-extension-functions
http://docs.python.org/release/3.1.3/extending/windows.html#a-cookbook-approach
http://docs.python.org/release/3.1.3/faq/extending.html#what-does-systemerror-pyimport-fixupextension-module-yourmodule-not-loaded-mean

http://docs.python.org/dev/extending/extending.html#keyword-parameters-for-extension-functions
http://docs.python.org/dev/extending/windows.html#a-cookbook-approach
http://docs.python.org/dev/faq/extending.html#what-does-systemerror-pyimport-fixupextension-module-yourmodule-not-loaded-mean

--
versions: +Python 3.1, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue12484
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com