Issue1087735
Created on 2004-12-19 00:04 by josiahcarlson, last changed 2008-01-20 14:50 by georg.brandl.
|
msg60617 - (view) |
Author: Josiah Carlson (josiahcarlson) |
Date: 2004-12-19 00:04 |
|
While one is able to get/set slices/items with
slice/index notation (mmapi[s:e] or mmapi[s]), one
cannot use the function equivalents,
mmapi.__setslice__(), etc.
This seems to be a bug, as nearly all other instances
produced by the Python standard library allow
instance.[special operator]() to be used.
If I knew what was necessary to expose the function
equivalents, I would offer a patch. Being that I
don't, I won't.
|
|
msg61304 - (view) |
Author: Georg Brandl (georg.brandl) |
Date: 2008-01-20 14:50 |
|
Fixed in r60143 by switching the mmap object's getattr function to the
standard PyObject_GenericGetAttr().
|
|
| Date |
User |
Action |
Args |
| 2008-01-20 14:50:33 | georg.brandl | set | status: open -> closed resolution: fixed messages:
+ msg61304 nosy:
+ georg.brandl |
| 2004-12-19 00:04:28 | josiahcarlson | create | |
|