Bugs item #1226404, was opened at 2005-06-23 13:30 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1226404&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Interpreter Core Group: Python 2.4 Status: Open Resolution: None Priority: 5 Submitted By: Gene Cash (gcash) Assigned to: Nobody/Anonymous (nobody) Summary: Can't take sequence slice past 32K Initial Comment: If you have a string/list/etc longer than 32K and you attempt to take a slice beyond the 32K size, you get "TypeError: indices must be integers". For example, if x='spam'*16000, then something like x[34000, 34100] fails, and x[y, z] also fails if y=34000 and z=34100 It affects lists and tuples as well as strings. This is present in 2.4 and 2.4.1, and happens on at least the Linux and Windows platforms. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1226404&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com