X-Git-Url: https://git.distorted.org.uk/~mdw/mLib-python/blobdiff_plain/f9f0b46e136ffa44d80c0a183ac99a9fce78d357..c34ff3c579610589a43ea775d0dbf0e15fa6b35f:/mapping.pyx diff --git a/mapping.pyx b/mapping.pyx index ab637c3..551261e 100644 --- a/mapping.pyx +++ b/mapping.pyx @@ -15,12 +15,12 @@ # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. -# +# # mLib/Python is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with mLib/Python; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -134,7 +134,7 @@ cdef class Mapping: break l.append(func(me, e)) return l - + def keys(me): return me._list(_map_key) def values(me): @@ -162,7 +162,7 @@ cdef class Mapping: return MapValueIter(me) def iteritems(me): return MapItemIter(me) - + cdef class MapIterBase: cdef Mapping m cdef object (*func)(Mapping m, void *e)