Serhiy Storchaka added the comment:

> I don't understand what you mean---can you elaborate?

The Python implementation of this method only 40 lines length, including blank 
lines, docstring and comments.  The C implementation requires over 160 lines 
and less clear.  Are there ways to use in Python interpreter core Python 
implementation for method of builtin class slice.  As already used C 
implementations for some Python-implemented classes.  May be add the file 
_builtins.py where Python version of some cumbersome methods will be 
implemented?  Then execute the followed code on interpreter initialization:

  from _builtins import slice_indices
  slice.indices = slice_indices
  del slice_indices

(or an analog in C).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14794>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to