PageRenderTime 34ms queryTime 45ms sortTime 0ms getByIdsTime 1105ms findMatchingLines 35ms

100+ results results for 'super(type(self) lang:Python' (34 ms)

Not the results you expected?
latex_log.py https://github.com/vim-scripts/AutomaticLaTexPlugin.git | Python | 528 lines
                    
65        if sys.version_info < (3,0):
                    
66            return super(type(self), self).iterkeys()
                    
67        else:
                    
71        if sys.version_info < (3,0):
                    
72            return super(type(self), self).iteritems()
                    
73        else:
                    
77        if sys.version_info < (3,0):
                    
78            return super(type(self), self).itervalues()
                    
79        else:
                    
                
jedi_vim.py https://gitlab.com/lokiexinferis/vim-configs | Python | 1159 lines
                    
63    def __init__(self, message, throwpoint, executing):
                    
64        super(type(self), self).__init__(message)
                    
65        self.message = message
                    
                
models.py https://github.com/dugo/The-Church-of-Horrors.git | Python | 543 lines
                    
41        self.slug = slugify(self.name)
                    
42        super(type(self),self).save(*args,**kwargs)"""
                    
43
                    
197        self.slug = slugify(self.name)
                    
198        super(type(self),self).save(*args,**kwargs)
                    
199
                    
289        self.slug = slugify(self.title)
                    
290        super(type(self),self).save(*args,**kwargs)
                    
291
                    
                
_continuous_distns.py https://github.com/matthew-brett/scipy.git | Python | 1846 lines
                    
61        if method == 'mm':
                    
62            return super(type(self), self).fit(*args, **kwds)
                    
63        else:
                    
                
views.py https://github.com/KelSolaar/Umbra.git | Python | 541 lines
                    
175
                    
176        super(type(self), self).resizeEvent(event)
                    
177
                    
187
                    
188        super(type(self), self).paintEvent(event)
                    
189
                    
275        if issubclass(type(self), QListView):
                    
276            super(type(self), self).setUniformItemSizes(True)
                    
277        elif issubclass(type(self), QTreeView):
                    
277        elif issubclass(type(self), QTreeView):
                    
278            super(type(self), self).setUniformRowHeights(True)
                    
279
                    
                
message.py https://github.com/akesling/chromium.git | Python | 267 lines
                    
35  def __init__(self):
                    
36    super(type(self), self).__init__()
                    
37    # Valid after EndParsing, this is the MessageClique that contains the
                    
95    else:
                    
96      return super(type(self), self).GetTextualIds()
                    
97
                    
107    else:
                    
108      return super(type(self), self).ItemFormatter(t)
                    
109
                    
110  def EndParsing(self):
                    
111    super(type(self), self).EndParsing()
                    
112
                    
257  def EndParsing(self):
                    
258    super(type(self), self).EndParsing()
                    
259    # We only allow a single example for each placeholder
                    
                
soundfx.py http://cwcpylib.googlecode.com/svn/trunk/ | Python | 1734 lines
                    
151
                    
152        super(type(self), self).Dispose(disposing)    
                    
153
                    
                
misc.py https://github.com/akesling/chromium.git | Python | 272 lines
                    
79    else:
                    
80      return super(type(self), self).ItemFormatter(t)
                    
81
                    
227    else:
                    
228      return super(type(self), self).ItemFormatter(t)
                    
229
                    
                
structure.py https://github.com/akesling/chromium.git | Python | 260 lines
                    
134    else:
                    
135      return super(type(self), self).ItemFormatter(t)
                    
136
                    
                
BBB_t_linear.py https://bitbucket.org/RamiroCope/thesis_repo.git | Python | 195 lines
                    
20        
                    
21        super(type(self), self).__init__()        
                    
22        
                    
113        
                    
114        super(type(self), self).__init__()
                    
115        
                    
                
MyUglyPrinter.py https://github.com/tylergreen/mython.git | Python | 357 lines
                    
317        self.level += 1
                    
318        _val = super(type(self),self).handle_children(node)
                    
319        self.level -= 1
                    
                
BBB_HS_test.py https://bitbucket.org/RamiroCope/thesis_repo.git | Python | 265 lines
                    
14    def __init__(self, input_size, hidden_sizes, output_size, act_func, prior_prec=1.0, prec_init=1.0, clip_var = None):
                    
15        super(type(self), self).__init__()
                    
16        self.input_size = input_size
                    
99    def __init__(self, in_features, out_features, sigma_prior=1.0, sigma_init=1.0, bias=True, clip_var = None):
                    
100        super(type(self), self).__init__()
                    
101        self.in_features = in_features
                    
                
message.py https://github.com/Gitman1989/chromium.git | Python | 276 lines
                    
35  def __init__(self):
                    
36    super(type(self), self).__init__()
                    
37    # Valid after EndParsing, this is the MessageClique that contains the
                    
95    else:
                    
96      return super(type(self), self).GetTextualIds()
                    
97
                    
103    if not self.SatisfiesOutputCondition():
                    
104      return super(type(self), self).ItemFormatter(t)
                    
105
                    
112    else:
                    
113      return super(type(self), self).ItemFormatter(t)
                    
114
                    
115  def EndParsing(self):
                    
116    super(type(self), self).EndParsing()
                    
117
                    
                
sipmodelling.py https://gitlab.com/resistivity-net/bert | Python | 158 lines
                    
49        """ Parameters: """
                    
50        super(type(self), self).__init__(verbose)
                    
51        if fop is not None:
                    
                
test_validation.py https://bitbucket.org/danmohr/machine-learning.git | Python | 1563 lines
                    
161        self.fit_called_ = True
                    
162        return super(type(self), self).fit(X_subset, y_subset)
                    
163
                    
                
BBB_HS_linear.py https://bitbucket.org/RamiroCope/thesis_repo.git | Python | 260 lines
                    
20                       clip_var = None):
                    
21        super(type(self), self).__init__()
                    
22        self.input_size = input_size
                    
111    def __init__(self, in_features, out_features, sigma_prior=1.0, sigma_init=1.0, bias=False, clip_var = None):
                    
112        super(type(self), self).__init__()
                    
113        self.in_features = in_features
                    
                
test_subclass.py https://code.google.com/p/mpi4py/ | Python | 308 lines
                    
9        if self != MPI.COMM_NULL:
                    
10            super(type(self), self).Free()
                    
11
                    
135    def test(self):
                    
136        return super(type(self), self).Test()
                    
137    def wait(self):
                    
137    def wait(self):
                    
138        return super(type(self), self).Wait()
                    
139
                    
143    def test(self):
                    
144        return super(type(self), self).Test()
                    
145    def wait(self):
                    
145    def wait(self):
                    
146        return super(type(self), self).Wait()
                    
147    def start(self):
                    
                
test_utils.py https://gitlab.com/lokiexinferis/vim-configs | Python | 119 lines
                    
16    def __init__(self, *args, **kwargs):
                    
17        super(type(self), self).__init__(*args, **kwargs)
                    
18
                    
                
playsound.py http://cwcpylib.googlecode.com/svn/trunk/ | Python | 178 lines
                    
45    def Dispose(self, disposing):              
                    
46        super(type(self), self).Dispose(disposing)    
                    
47
                    
                
BBB.py https://bitbucket.org/RamiroCope/thesis_repo.git | Python | 167 lines
                    
14    def __init__(self, input_size, hidden_sizes, output_size, act_func, prior_prec=1.0, prec_init=1.0):
                    
15        super(type(self), self).__init__()
                    
16        self.input_size = input_size
                    
92    def __init__(self, in_features, out_features, sigma_prior=1.0, sigma_init=1.0, bias=True):
                    
93        super(type(self), self).__init__()
                    
94        self.in_features = in_features
                    
                
compound.py https://gitlab.com/MDSplus/mdsplus.git | Python | 474 lines
                    
35            if keyword in self.fields:
                    
36                super(type(self),self).__setitem__(self._fields[keyword],params[keyword])
                    
37
                    
169        """Set argument at index idx (indexes start at 0)"""
                    
170        return super(type(self),self).__setitem__(idx+self._argOffset,value)
                    
171
                    
175        """
                    
176        return super(type(self),self).__setitem__(slice(self._argOffset,None),args)
                    
177
                    
179        """Set descriptor at index idx (indexes start at 0)"""
                    
180        return super(type(self),self).__setitem__(n,value)
                    
181
                    
                
webdriver_browser_driver.py https://github.com/bardusco/pyccuracy.git | Python | 128 lines
                    
20    def __init__(self, browser_to_run, tests_dir):
                    
21        super(type(self), self).__init__(browser_to_run, tests_dir)
                    
22        self.__port__ = 8888
                    
                
message.py https://github.com/bluebellzhy/chromium.git | Python | 247 lines
                    
35  def __init__(self):
                    
36    super(type(self), self).__init__()
                    
37    # Valid after EndParsing, this is the MessageClique that contains the
                    
94    else:
                    
95      return super(type(self), self).GetTextualIds()
                    
96  
                    
106    else:
                    
107      return super(type(self), self).ItemFormatter(t)
                    
108
                    
109  def EndParsing(self):
                    
110    super(type(self), self).EndParsing()
                    
111    
                    
237  def EndParsing(self):
                    
238    super(type(self), self).EndParsing()
                    
239    # We only allow a single example for each placeholder
                    
                
AST.py https://github.com/tylergreen/mython.git | Python | 116 lines
                    
66            # ASSUMES: super type is either this class or a sum type.
                    
67            md = super(type(self), self).__asdl_meta__
                    
68        if "attributes" in md:
                    
                
BBB_linear.py https://bitbucket.org/RamiroCope/thesis_repo.git | Python | 164 lines
                    
13    def __init__(self, input_size, hidden_sizes, output_size=None, prior_prec=1.0, prec_init=1.0):
                    
14        super(type(self), self).__init__()
                    
15        self.input_size = input_size
                    
91    def __init__(self, in_features, out_features, sigma_prior=1.0, sigma_init=1.0, bias=False):
                    
92        super(type(self), self).__init__()
                    
93        self.in_features = in_features
                    
                
view.py https://github.com/aidanf/SimpleICM.git | Python | 338 lines
                    
37    def Dispose(self, disposing):
                    
38        super(type(self), self).Dispose(disposing)
                    
39    
                    
                
WordSub.py https://bitbucket.org/mmellott/ai.git | Python | 98 lines
                    
69        # for each entry the user adds, we actually add three entrys:
                    
70        super(type(self),self).__setitem__(string.lower(i),string.lower(y)) # key = value
                    
71        super(type(self),self).__setitem__(string.capwords(i), string.capwords(y)) # Key = Value
                    
71        super(type(self),self).__setitem__(string.capwords(i), string.capwords(y)) # Key = Value
                    
72        super(type(self),self).__setitem__(string.upper(i), string.upper(y)) # KEY = VALUE
                    
73
                    
                
test_suite_all.py https://github.com/akesling/chromium.git | Python | 85 lines
                    
22  def __init__(self):
                    
23    super(type(self), self).__init__()
                    
24    # Imports placed here to prevent circular imports.
                    
                
__init__.py https://github.com/bjornua/beercalc.git | Python | 40 lines
                    
8    def __init__(self):
                    
9        super(type(self), self).__init__()
                    
10        
                    
                
controls.py https://bitbucket.org/srobertson/quodlibet-testing | Python | 258 lines
                    
142        i = gtk.image_new_from_stock(stock.VOLUME_MAX, SIZE)
                    
143        super(type(self), self).__init__(i)
                    
144        self.scale.set_update_policy(gtk.UPDATE_CONTINUOUS)
                    
                
load.py https://bitbucket.org/kc/pybctc | Python | 222 lines
                    
61    def __init__(self):
                    
62        super(type(self), self).__init__(URLMAP)
                    
63
                    
                
jedi_vim.py https://bitbucket.org/hbhzwj/vim-config | Python | 474 lines
                    
28    def __init__(self, message, throwpoint, executing):
                    
29        super(type(self), self).__init__(message)
                    
30        self.throwpoint = throwpoint
                    
                
test_subclass.py https://bitbucket.org/svenx/mpi4py.git | Python | 303 lines
                    
136    def test(self):
                    
137        return super(type(self), self).Test()
                    
138    def wait(self):
                    
138    def wait(self):
                    
139        return super(type(self), self).Wait()
                    
140
                    
144    def test(self):
                    
145        return super(type(self), self).Test()
                    
146    def wait(self):
                    
146    def wait(self):
                    
147        return super(type(self), self).Wait()
                    
148    def start(self):
                    
148    def start(self):
                    
149        return super(type(self), self).Start()
                    
150
                    
                
test_model_type.py https://github.com/schematics/schematics.git | Python | 314 lines
                    
180            def __init__(self, *args, **kwargs):
                    
181                super(type(self), self).__init__(*args, **kwargs)
                    
182                conversions[0] += 1
                    
                
Transition.py https://github.com/antlr/antlr4.git | Python | 268 lines
                    
211            and symbol <= maxVocabSymbol \
                    
212            and not super(type(self), self).matches(symbol, minVocabSymbol, maxVocabSymbol)
                    
213
                    
214    def __str__(self):
                    
215        return '~' + super(type(self), self).__str__()
                    
216
                    
                
selenium_browser_driver.py https://github.com/bardusco/pyccuracy.git | Python | 226 lines
                    
25    def __init__(self, browser_to_run, tests_dir, extra_args):
                    
26        super(type(self),self).__init__(browser_to_run, tests_dir)
                    
27        if extra_args.has_key("selenium.server"):
                    
                
describe_trash_list.py https://gitlab.com/loic-corbasson/trash-cli | Python | 301 lines
                    
129    def setUp(self):
                    
130        super(type(self),self).setUp()
                    
131        self.top_trashdir1 = FakeTrashDir('topdir/.Trash/123')
                    
                
c.py https://github.com/dagss/f2py-g3.git | Python | 497 lines
                    
74            return self.filename, self.get_view('string', parents)
                    
75        return super(type(self), self).request_data(subs_name, parents)
                    
76
                    
313            other = basic.Line(other)
                    
314        super(type(self), self).add(other)
                    
315
                    
404            return
                    
405        return super(type(self), self).request_data(subs_name, parents)
                    
406
                    
412            return
                    
413        return super(type(self), self).request_data(subs_name, parents)
                    
414
                    
                
text.py https://github.com/gfxmonk/savemytext.appspot.com.git | Python | 32 lines
                    
12	def __init__(self, *a, **k):
                    
13		super(type(self), self).__init__(**k)
                    
14		if not self.title:
                    
                
io.py https://github.com/akesling/chromium.git | Python | 106 lines
                    
22  def __init__(self):
                    
23    super(type(self), self).__init__()
                    
24    self.re = None
                    
102    else:
                    
103      return super(type(self), self).ItemFormatter(t)
                    
104
                    
                
renderer.py https://bitbucket.org/dexteris/forma | Python | 442 lines
                    
91            sys.exit(-1)
                    
92        #super(type(self),self).pre_render(fobj)
                    
93        if not hasattr(fobj,'_glforma'):
                    
97    def post_render(self,fobj):
                    
98        #super(type(self),self).post_render(fobj)
                    
99        fobj._glforma.post_render()
                    
255    def __init__(self,fobj):
                    
256        super(type(self),self).__init__(fobj)
                    
257    
                    
268    def __init__(self,fobj):
                    
269        super(type(self),self).__init__(fobj)
                    
270    
                    
280    def __init__(self,fobj):
                    
281        super(type(self),self).__init__(fobj)
                    
282    
                    
                
models.py https://bitbucket.org/syneus/dynamic-content-watchout | Python | 222 lines
                    
129            )
                    
130        super(type(self), self).save(force_insert=force_insert, force_update=force_update)
                    
131    
                    
                
term_coeff_dict.py https://github.com/escheffel/pymaclab.git | Python | 420 lines
                    
359            else:
                    
360                return super(type(self), self).algebra_add(Algebra, lhs, rhs, inplace)
                    
361
                    
369            return TERM_COEFF_DICT.to_ADD(Algebra, lhs.data, lhs) + rhs
                    
370        return super(type(self), self).algebra_add(Algebra, lhs, rhs, inplace)
                    
371
                    
389            return self.algebra_mul_number(Algebra, lhs, rdata, inplace)
                    
390        return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
391
                    
                
txt.py https://github.com/akesling/chromium.git | Python | 52 lines
                    
21  def __init__(self, contents):
                    
22    super(type(self), self).__init__()
                    
23    self.text_ = contents
                    
                
poker.py https://github.com/jaekwon/jae-python.git | Python | 249 lines
                    
37	def __init__(self, name):
                    
38		super(type(self), self).__init__(name);
                    
39		self.last_game = None
                    
                
newstyle.py https://bitbucket.org/edhilgendorf/public-code.git | Python | 142 lines
                    
94
                    
95                # calling super(type(self), self) can lead to recursion loop
                    
96                # in derived classes
                    
                
super_checks.py https://bitbucket.org/DennD/djangoember.git | Python | 125 lines
                    
119    def __init__(self):
                    
120        super(type(self), self).__init__() # [bad-super-call]
                    
121
                    
                
components.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 257 lines
                    
102    def __init__(self, name, setname, setpath):
                    
103        super(type(self), self).__init__(name)
                    
104        self.setname = setname
                    
                
module.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 292 lines
                    
235    def __init__(self, name):
                    
236        super(type(self), self).__init__(name)
                    
237        self.__wrapped__ = None
                    
                
Feature.py https://github.com/gilleain/tailor.git | Python | 253 lines
                    
105    def __init__(self, id):
                    
106        super(type(self), self).__init__()
                    
107        self.id = id
                    
132    def __init__(self, number):
                    
133        super(type(self), self).__init__()
                    
134        self.number = number
                    
142    def __init__(self, chainID, chainType=None):
                    
143        super(type(self), self).__init__()
                    
144        self.chainID = chainID
                    
174    def __init__(self, residueID, resname, segID=None):
                    
175        super(type(self), self).__init__()
                    
176        if isinstance(residueID, tuple):
                    
205    def __init__(self, name, coord, b_factor=None, occupancy=1.0, altloc=None):
                    
206        super(type(self), self).__init__()
                    
207        self.name = name.strip()
                    
                
WordSub.py https://gitlab.com/nprs/yach | Python | 98 lines
                    
69        # for each entry the user adds, we actually add three entrys:
                    
70        super(type(self),self).__setitem__(i.lower(),y.lower()) # key = value
                    
71        super(type(self),self).__setitem__(string.capwords(i), string.capwords(y)) # Key = Value
                    
71        super(type(self),self).__setitem__(string.capwords(i), string.capwords(y)) # Key = Value
                    
72        super(type(self),self).__setitem__(i.upper(), y.upper()) # KEY = VALUE
                    
73
                    
                
mul.py https://github.com/escheffel/pymaclab.git | Python | 350 lines
                    
347                return Algebra(MUL, [op**-1 for op in lhs.data[::-1]])
                    
348        return super(type(self), self).algebra_pow_number(Algebra, lhs, rhs, inplace)
                    
349
                    
                
number.py https://github.com/escheffel/pymaclab.git | Python | 315 lines
                    
261                    return rhead.algebra_add_number(Algebra, rhs, ldata, inplace)
                    
262                return super(type(self), self).algebra_add(Algebra, lhs, rhs, inplace)
                    
263            return Algebra(ADD, [lhs, rhs])
                    
313                return mul_new(Algebra, d)
                    
314        return super(type(self), self).algebra_pow_number(Algebra, lhs, rhs, inplace)
                    
315NUMBER = NumberHead()
                    
                
add.py https://github.com/escheffel/pymaclab.git | Python | 341 lines
                    
337                    return ADD.algebra_mul_number(Algebra, lhs, rdata, inplace)
                    
338                return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
339            return mul_new(Algebra, [lhs, rhs])
                    
                
xrhex.py https://bitbucket.org/dexteris/forma | Python | 165 lines
                    
39        self.color = [0.8,0.7,0.4]
                    
40        super(type(self),self).__init__(kwargs)
                    
41        
                    
65        self.color = [0.1,0.1,0.1]
                    
66        super(type(self),self).__init__(kwargs)
                    
67
                    
103        self.shell_color = [0.1,0.1,0.1]
                    
104        super(type(self),self).__init__(kwargs)
                    
105
                    
                
Transition.py https://github.com/antlr/antlr4.git | Python | 252 lines
                    
201            and symbol <= maxVocabSymbol \
                    
202            and not super(type(self), self).matches(symbol, minVocabSymbol, maxVocabSymbol)
                    
203
                    
204    def __unicode__(self):
                    
205        return u'~' + super(type(self), self).__unicode__()
                    
206
                    
                
parser.py git://github.com/eigenhombre/PyClojure.git | Python | 145 lines
                    
26        if not _quiet:
                    
27            super(type(self), self).debug(*args, **kwargs)
                    
28
                    
                
palm.py https://bitbucket.org/micseydel/palm-database-reader.git | Python | 126 lines
                    
44    def __init__(self, packed_string):
                    
45        super(type(self), self).__init__(*self._format.unpack(packed_string))
                    
46
                    
60    def __init__(self, packed_string):
                    
61        super(type(self), self).__init__(*self._format.unpack(packed_string))
                    
62    
                    
                
primitives.py https://bitbucket.org/dexteris/forma | Python | 159 lines
                    
39        self.normal = [0.0,0.0,1.0];
                    
40        super(type(self),self).__init__(kwargs)
                    
41        if not hasattr(self,'points'):
                    
54        self.arc = 2.0*pi
                    
55        super(type(self),self).__init__(kwargs)
                    
56
                    
62        self.radius = 1.0
                    
63        super(type(self),self).__init__(kwargs)
                    
64        
                    
71        self.height = 1.0
                    
72        super(type(self),self).__init__(kwargs)
                    
73        self.c = Circle(radius=self.radius)
                    
85        self.height = 1.0
                    
86        super(type(self),self).__init__(kwargs)
                    
87
                    
                
store.py https://github.com/bjornua/beercalc.git | Python | 53 lines
                    
8    def __init__(self):
                    
9        super(type(self), self).__init__(
                    
10            gobject.TYPE_PYOBJECT,
                    
                
writer.py https://github.com/bruceravel/demeter.git | Python | 217 lines
                    
90
                    
91        # super(type(self), self).__init__(document, builder)
                    
92        nodes.NodeVisitor.__init__(self, document)
                    
                
template_formatter.py https://github.com/Gitman1989/chromium.git | Python | 123 lines
                    
38    '''
                    
39    super(type(self), self).__init__()
                    
40    writer_module_name = \
                    
                
transforms.py https://bitbucket.org/dexteris/forma | Python | 52 lines
                    
34        self.transmat = numpy.eye(4)
                    
35        super(type(self),self).__init__(kwargs)
                    
36
                    
41        self.z = 0.0
                    
42        super(type(self),self).__init__(kwargs)
                    
43    
                    
50        self.z = 0.0
                    
51        super(type(self),self).__init__(kwargs)
                    
52
                    
                
Form1.py https://IronPythonStudio.svn.codeplex.com/svn | Python | 37 lines
                    
20            
                    
21            super(type(self), self).Dispose(disposing)
                    
22        
                    
                
_multidict.py https://gitlab.com/zimmermanncode/moretools | Python | 145 lines
                    
91    def __init__(self, dicts, default_value = _NoValue):
                    
92        super(type(self), self).__init__(self, dicts)
                    
93
                    
                
selenium_browser_driver.py https://github.com/kenjiyamamoto/pyccuracy.git | Python | 176 lines
                    
25    def __init__(self, browser_to_run, tests_dir):
                    
26        super(type(self),self).__init__(browser_to_run, tests_dir)
                    
27        self.__port__ = 4444
                    
                
neg.py https://github.com/escheffel/pymaclab.git | Python | 127 lines
                    
117        if Algebra.algebra_options.get('is_additive_group_commutative'):
                    
118            return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
119        else:
                    
123                    return ldata.head.algebra_mul_number(Algebra, ldata, -rdata, inplace)
                    
124                return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
125            return mul_new(Algebra, [lhs, rhs])
                    
                
orm.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 337 lines
                    
278    def __init__(self, database, *args, **kwargs)
                    
279        super(type(self), self).__init__(database, *args, **kwargs)
                    
280        self.row_factory = self.ROW_CLASS
                    
                
menubar.py https://github.com/bjornua/beercalc.git | Python | 33 lines
                    
5    def __init__(self):
                    
6        super(type(self), self).__init__()
                    
7
                    
12    def __init__(self):
                    
13        super(type(self), self).__init__(u"_Filer")
                    
14        
                    
25    def __init__(self):
                    
26        super(type(self), self).__init__(u"_Hjælp")
                    
27        
                    
                
test_multifs_auth.py https://github.com/ceph/ceph.git | Python | 308 lines
                    
130
                    
131        super(type(self), self).tearDown()
                    
132
                    
                
include.py https://github.com/bluebellzhy/chromium.git | Python | 71 lines
                    
40    else:
                    
41      return super(type(self), self).ItemFormatter(t)
                    
42  
                    
                
cl2.py https://bitbucket.org/bewest/insulaudit | Python | 553 lines
                    
148  def __init__( self, port, timeout=None ):
                    
149    super(type(self), self).__init__(port, timeout)
                    
150
                    
                
symbol.py https://github.com/escheffel/pymaclab.git | Python | 222 lines
                    
156                return add_new(Algebra, [lhs, rhs])
                    
157            return super(type(self), self).algebra_add(Algebra, lhs, rhs, inplace)
                    
158        else:
                    
208                pass
                    
209        return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
210
                    
219                return cls(POW, (lhs, rhs))
                    
220        return super(type(self), self).algebra_pow_number(Algebra, lhs, rhs, inplace)
                    
221
                    
                
scene.py https://bitbucket.org/dexteris/forma | Python | 47 lines
                    
33        self.renderer = None
                    
34        super(type(self),self).__init__(kwargs)
                    
35        self.updaters = []
                    
                
table.py https://github.com/bjornua/beercalc.git | Python | 54 lines
                    
7    def __init__(self, store):
                    
8        super(type(self), self).__init__(model=store)
                    
9        
                    
                
worley.py https://github.com/freethenation/OpenCLNoise.git | Python | 73 lines
                    
16    def __init__(self,function='F1',distance='euclidian',seed=0):
                    
17        super(type(self),self).__init__()
                    
18        self.__function = ''
                    
64            code += '#define /*id*/{0} {1}\n'.format(k,v)
                    
65        code += super(type(self),self).generate_code()
                    
66        return code
                    
                
type.py https://bitbucket.org/bungcip/pytegal | Python | 211 lines
                    
193    def __init__(self):
                    
194        super(type(self), self).__init__(None)
                    
195        self.name = "Void"
                    
202        assert len(typeArgs) == 2, "len(typeArgs) must be 2 (typeArgs=={0})".format(repr(typeArgs))
                    
203        super(type(self), self).__init__(symbol, typeArgs)
                    
204        
                    
                
disting.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 148 lines
                    
69        self.account = account
                    
70        super(type(self), self).__init__(project)
                    
71
                    
110    def __init__(self, project, summary=None):
                    
111        super(type(self), self).__init__(project, summary)
                    
112        self.description = self.pull_description()
                    
                
filestore.py https://github.com/kramer314/sagecell.git | Python | 492 lines
                    
227            self.filename = filename
                    
228            super(type(self), self).__init__()
                    
229        def __enter__(self):
                    
234            self.filestore.create_file(self, self.session, self.filename)
                    
235            super(type(self), self).close()
                    
236
                    
                
ATNDeserializationOptions.py https://bitbucket.org/rendoir/feup-comp.git | Python | 24 lines
                    
19            raise Exception("The object is read only.")
                    
20        super(type(self), self).__setattr__(key,value)
                    
21
                    
                
Description.py https://github.com/gilleain/tailor.git | Python | 355 lines
                    
92    def __init__(self, propertyConditions, name=None):
                    
93        super(type(self), self).__init__(propertyConditions)
                    
94        self.name = name
                    
120    def __init__(self, propertyConditions):
                    
121        super(type(self), self).__init__(propertyConditions)
                    
122        self.levelCode = "C"
                    
272    def __init__(self, propertyConditions):
                    
273        super(type(self), self).__init__(propertyConditions)
                    
274        self.levelCode = "R"
                    
311    def __init__(self, propertyConditions):
                    
312        super(type(self), self).__init__(propertyConditions)
                    
313        self.levelCode = "A"
                    
                
term_coeff.py https://github.com/escheffel/pymaclab.git | Python | 351 lines
                    
321                return add_new(Algebra, data)
                    
322            return super(type(self), self).algebra_add(Algebra, lhs, rhs, inplace)
                    
323        else:
                    
347                return term_coeff_new(Algebra, (term, coeff*rdata))
                    
348            return super(type(self), self).algebra_mul(Algebra, lhs, rhs, inplace)
                    
349        return mul_new(Algebra, [lhs, rhs])
                    
                
readonlyfield.py https://github.com/becomingGuru/djangoutils.git | Python | 43 lines
                    
19    def __init__(self, widget=None, label=None, initial=None, help_text=None):
                    
20        super(type(self), self).__init__(self, label=label, initial=initial, 
                    
21            help_text=help_text, widget=widget)
                    
                
io.py https://github.com/bluebellzhy/chromium.git | Python | 106 lines
                    
22  def __init__(self):
                    
23    super(type(self), self).__init__()
                    
24    self.re = None
                    
102    else:
                    
103      return super(type(self), self).ItemFormatter(t) 
                    
104  
                    
                
idlookup.py https://github.com/cohoe/scripts.git | Python | 210 lines
                    
30
                    
31        super(type(self), self).__init__(values, type(self).__name__)
                    
32
                    
38
                    
39        super(type(self), self).__init__(values, type(self).__name__)
                    
40
                    
                
job.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 86 lines
                    
32    def __init__(self, name, master):
                    
33        super(type(self), self).__init__(name, master)
                    
34        self.subordinates = self._get_subordinate_slaves()
                    
                
widgets.py https://bitbucket.org/indifex/hydroscope | Python | 60 lines
                    
53    def __init__(self, widget=None, label=None, initial=None, help_text=None):
                    
54        super(type(self), self).__init__(self, label=label, initial=initial,
                    
55            help_text=help_text, widget=widget)
                    
                
iter_bot.py https://github.com/cail/icfpc2011-tbd.git | Python | 189 lines
                    
112        self.handicap = handicap
                    
113        super(type(self), self).__init__()
                    
114
                    
                
perlin.py https://github.com/freethenation/OpenCLNoise.git | Python | 62 lines
                    
15    def __init__(self,seed=0,maxdepth=8,persistence=0.8,initial_amplitude=0.4,initial_frequency=1.0):
                    
16        super(type(self),self).__init__()
                    
17        self._seed = seed
                    
                
core.py https://github.com/gfxmonk/python-irank.git | Python | 188 lines
                    
163		k = self.__get_real_key(k)
                    
164		super(type(self), self).__setitem__(k,v)
                    
165	
                    
                
FileStream.py https://github.com/antlr/antlr4.git | Python | 32 lines
                    
24            data = codecs.decode(bytes, encoding, errors)
                    
25            super(type(self), self).__init__(data)
                    
26
                    
                
link.py https://github.com/bewest/unapy.git | Python | 224 lines
                    
59    self.__name__ = name
                    
60    self.__port__ = super(type(self), self).__init__(name, timeout=2)
                    
61    self.getLog()
                    
93  def write( self, string ):
                    
94    r = super(type(self), self).write( string )
                    
95    #self.log.info( 'write: %s\n%s' % ( len( string ),
                    
99  def read( self, c ):
                    
100    r = super(type(self), self).read( c )
                    
101    #self.log.info( 'read: %s\n%s' % ( len( r ),
                    
105  def readline( self ):
                    
106    r = super(type(self), self).readline( )
                    
107    #self.log.info( 'read: %s\n%s' % ( len( r ),
                    
111  def readlines( self ):
                    
112    r = super(type(self), self).readlines( )
                    
113    self.log.info( 'read: %s\n%s' % ( len( r ),
                    
                
wrapper.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 214 lines
                    
27            msg = "maximum iterations reached (%s)" % max
                    
28        super(type(self), self).__init__(msg, *args)
                    
29
                    
                
blend.py https://github.com/freethenation/OpenCLNoise.git | Python | 60 lines
                    
34    def __init__(self,mode=BlendMode.NORMAL):
                    
35        super(type(self),self).__init__()
                    
36        self.__mode = mode
                    
52        code = '#define /*id*/CHANNEL_BLEND_FUNC ChannelBlend_{0}\n'.format(self.__mode)
                    
53        code += super(type(self),self).generate_code()
                    
54        return code
                    
                
persistent.py https://bitbucket.org/gsakkis/kitchen_sink | Python | 155 lines
                    
25            #else:
                    
26            #    parent = super(type(self),self).__setattr__
                    
27            #    print "QW", parent
                    
                
flow.py https://github.com/bewest/unapy.git | Python | 213 lines
                    
163  def custom_pre_run(self):
                    
164    super(type(self), self).custom_pre_run()
                    
165    logging.basicConfig( )
                    
182      cmd_help.append("       %s" % cmd)
                    
183    super(type(self), self).set_custom_options()
                    
184    self.parser.set_usage(usage.format(commands="\n".join(cmd_help)))
                    
200  def setup_pre_options(self):
                    
201    super(type(self), self).setup_pre_options()
                    
202
                    
                
script.py https://bitbucket.org/jagan/pydoop.git | Python | 233 lines
                    
64  def __init__(self, ctx):
                    
65    super(type(self), self).__init__(ctx)
                    
66    self.writer = ContextWriter(ctx)
                    
73  def __init__(self, ctx):
                    
74    super(type(self), self).__init__(ctx)
                    
75    self.writer = ContextWriter(ctx)
                    
                
simpleui.py https://bitbucket.org/twright/c1000-intelligent-calculator.git | Python | 234 lines
                    
32        ''' Initialize the interface. '''
                    
33        super(type(self), self).__init__(parent)
                    
34        uic.loadUi('simpleui.ui', self)
                    
                
Runner.py https://bitbucket.org/chadburrus/rabbitmq-tutorials.git | Python | 34 lines
                    
26		""" A shortcut method to call super on me. """
                    
27		return super(type(self), self)
                    
28
                    
                
application.py https://github.com/nixon/torn.git | Python | 25 lines
                    
23                base_logger.setLevel(logging.ERROR)
                    
24        super(type(self), self).__init__(*args, **kwargs)
                    
25
                    
                
scaletrans.py https://github.com/freethenation/OpenCLNoise.git | Python | 41 lines
                    
5    def __init__(self,scale=(1.0,1.0,1.0),translate=(0.0,0.0,0.0)):
                    
6        super(type(self),self).__init__()
                    
7        self._scale = scale
                    
                
 

Source

Language