diff options
author | Yury Selivanov <yury@magic.io> | 2018-03-30 17:40:54 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-03-30 17:40:54 -0400 |
commit | 0f8c9661935e23a6c908504ac1208292bd55ab12 (patch) | |
tree | ace16137f7f687f26466e7eeaa779791959fe873 | |
parent | ff2fb8d8505ee362b2de409aeca34f86e701002e (diff) | |
download | immutables-0f8c9661935e23a6c908504ac1208292bd55ab12.tar.gz immutables-0f8c9661935e23a6c908504ac1208292bd55ab12.zip |
Fix type name: "map" -> "Map"
-rw-r--r-- | immutables/_map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/immutables/_map.c b/immutables/_map.c index 3586803..5c8bc42 100644 --- a/immutables/_map.c +++ b/immutables/_map.c @@ -2885,7 +2885,7 @@ static PyMappingMethods Map_as_mapping = { PyTypeObject _Map_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) - "map", + "Map", sizeof(MapObject), .tp_methods = Map_methods, .tp_as_mapping = &Map_as_mapping, |