Переглянути джерело

added copy function to _dict

version-14
Nabin Hait 12 роки тому
джерело
коміт
adcad93d78
1 змінених файлів з 2 додано та 0 видалено
  1. +2
    -0
      webnotes/__init__.py

+ 2
- 0
webnotes/__init__.py Переглянути файл

@@ -50,6 +50,8 @@ class _dict(dict):
"""update and return self -- the missing dict feature in python"""
super(_dict, self).update(d)
return self
def copy(self):
return _dict(super(_dict, self).copy())
def _(s):
return s


Завантаження…
Відмінити
Зберегти