diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2016-01-23 15:36:10 +0200 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2016-01-23 15:38:06 +0200 |
commit | fa69908d712375ad599431eedeb7ef01bede83ff (patch) | |
tree | 931110a661d76d22e9af9c71289b0aea9de43972 /efl | |
parent | 86aa8c51383999a424d58bdc322fe231c53e39ea (diff) |
Eo: Add a private dict which can be used for callbacks etc.
Diffstat (limited to 'efl')
-rw-r--r-- | efl/eo/efl.eo.pyx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/efl/eo/efl.eo.pyx b/efl/eo/efl.eo.pyx index bd38c2f..13cf9df 100644 --- a/efl/eo/efl.eo.pyx +++ b/efl/eo/efl.eo.pyx | |||
@@ -235,6 +235,7 @@ cdef class Eo(object): | |||
235 | 235 | ||
236 | def __cinit__(self): | 236 | def __cinit__(self): |
237 | self.data = dict() | 237 | self.data = dict() |
238 | self.internal_data = dict() | ||
238 | 239 | ||
239 | def __init__(self, *args, **kwargs): | 240 | def __init__(self, *args, **kwargs): |
240 | if type(self) is Eo: | 241 | if type(self) is Eo: |