[issue3101] global function _add_one_to_index_C

2010-09-01 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've added a "_Py" prefix in r84391, and also made the `shape` argument const. If numpy people want this to be an official public API, they'll have to contribute. Thanks. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ve

[issue3101] global function _add_one_to_index_C

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Functions are still present and non-static in trunk. -- assignee: teoliphant -> pitrou nosy: +georg.brandl ___ Python tracker ___

[issue3101] global function _add_one_to_index_C

2009-03-29 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +doko ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue3101] global function _add_one_to_index_C

2008-12-08 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: Well, then a proper API should be devised. Perhaps Travis can shed more light on what he thinks would be useful. ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3101] global function _add_one_to_index_C

2008-12-08 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: > I think they currently are private functions which happen to be used > accross two different C source files. But see msg71879 ___ Python tracker <[EMAIL PROTECTED]> _

[issue3101] global function _add_one_to_index_C

2008-12-08 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: I think they currently are private functions which happen to be used accross two different C source files. So they should be renamed _Py_something (or the situation should be fixed so that they can be made static). ___

[issue3101] global function _add_one_to_index_C

2008-12-08 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: I think _add_one_to_index_C and _add_one_to_index_F should be renamed. If they are meant to be called by non-core extension modules, their names should start with Py_, else with _Py_. ___ Python tracker <[

[issue3101] global function _add_one_to_index_C

2008-12-08 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- title: global function _add_one_to_C -> global function _add_one_to_index_C ___ Python tracker <[EMAIL PROTECTED]> ___ __