diff options
author | 2010-04-14 00:24:55 +0000 | |
---|---|---|
committer | 2010-04-14 00:24:55 +0000 | |
commit | bf9f7ba0afd745aecaa13f254b226c051d9148da (patch) | |
tree | 0ef81da51b5b18bf60912d645dfaa7309b91f73d /dev-python/fuse-python/files | |
parent | Version bump (diff) | |
download | historical-bf9f7ba0afd745aecaa13f254b226c051d9148da.tar.gz historical-bf9f7ba0afd745aecaa13f254b226c051d9148da.tar.bz2 historical-bf9f7ba0afd745aecaa13f254b226c051d9148da.zip |
dev-python/fuse-python: Integrate patch to fix ctors
Package-Manager: portage-2.2_rc62/cvs/Linux i686
Diffstat (limited to 'dev-python/fuse-python/files')
-rw-r--r-- | dev-python/fuse-python/files/fuse-python-0.2-fix-ctors.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/fuse-python/files/fuse-python-0.2-fix-ctors.patch b/dev-python/fuse-python/files/fuse-python-0.2-fix-ctors.patch new file mode 100644 index 000000000000..4ec50f2f3508 --- /dev/null +++ b/dev-python/fuse-python/files/fuse-python-0.2-fix-ctors.patch @@ -0,0 +1,32 @@ +--- fuse.py ++++ fuse.py +@@ -461,13 +462,14 @@ + FUSE, see ``fuse.h``). + """ + +- def __init__(self, name, **kw): ++ def __init__(self, name=None, **kw): + + self.l_type = None + self.l_start = None + self.l_len = None + self.l_pid = None + ++ kw['name'] = name + FuseStruct.__init__(self, **kw) + + +@@ -477,11 +479,12 @@ + http://www.opengroup.org/onlinepubs/009695399/basedefs/time.h.html + """ + +- def __init__(self, name, **kw): ++ def __init__(self, name=None, **kw): + + self.tv_sec = None + self.tv_nsec = None + ++ kw['name'] = name + FuseStruct.__init__(self, **kw) + + |