Author: Philip Jenvey <pjen...@underboss.org>
Branch: 
Changeset: r84562:1dbd3830e479
Date: 2016-05-21 15:57 -0700
http://bitbucket.org/pypy/pypy/changeset/1dbd3830e479/

Log:    kill unnecessary object.__init__ call

diff --git a/pypy/module/posix/app_posix.py b/pypy/module/posix/app_posix.py
--- a/pypy/module/posix/app_posix.py
+++ b/pypy/module/posix/app_posix.py
@@ -53,8 +53,6 @@
         st_flags = structseqfield(23, "user defined flags for file")
 
     def __init__(self, *args, **kw):
-        super(stat_result, self).__init__(*args, **kw)
-
         # If we have been initialized from a tuple,
         # st_?time might be set to None. Initialize it
         # from the int slots.
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to