76+ results for 'super(type(self) lang:Python' (5 ms)

Not the results you expected?
Expressions.py https://github.com/sibears/HRAST.git | Python | 275 lines
                    
257    def check(self, expr, ctx):
                    
258        return expr.opname == opname and super(type(self), self).check(expr, ctx)
                    
259
                    
265    def check(self, expr, ctx):
                    
266        return expr.opname == opname and super(type(self), self).check(expr.x, ctx)
                    
267
                    
                
postgres.py https://github.com/ombu/vakap.git | Python | 34 lines
                    
8    def __init__(self, site_name, raw_data):
                    
9        super(type(self), self).__init__(site_name, raw_data)
                    
10
                    
                
h5py_wrapper.py https://github.com/AnyBody-Research-Group/AnyPyTools.git | Python | 164 lines
                    
50        except KeyError:
                    
51            elem = super(type(self), self)
                    
52            levels = path.strip("/").split("/")
                    
107        except KeyError:
                    
108            elem = super(type(self), self)
                    
109            levels = path.strip("/").split("/")
                    
                
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:
                    
                
bases.py https://github.com/Ciphey/Ciphey.git | Python | 48 lines
                    
37    ns["priority"] = ciphey.common.id_lambda(priority)
                    
38    ns["__init__"] = lambda self, config: super(type(self), self).__init__(config)
                    
39
                    
                
cfg.py https://github.com/looking-for-a-job/setupcfg.py.git | Python | 97 lines
                    
93            raise ValueError("'%s' is not dict" % key)
                    
94        super(type(self), self).__setitem__(key, value)
                    
95
                    
                
__init__.py https://github.com/bjornua/beercalc.git | Python | 40 lines
                    
8    def __init__(self):
                    
9        super(type(self), self).__init__()
                    
10        
                    
                
decorators.py https://github.com/guerrillagrafters/GuerrillaGrafters_Web.git | Python | 27 lines
                    
22
                    
23      return super(type(self), self).changelist_view(request, **kwargs)
                    
24
                    
                
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:
                    
                
GSAlg.py https://github.com/bnpy/bnpy.git | Python | 63 lines
                    
18        '''
                    
19        super(type(self), self).__init__(**kwargs)
                    
20
                    
                
testsuite_default_UnitAlgebra.py https://github.com/sstsimulator/sst-core.git | Python | 64 lines
                    
26    def initializeClass(self, testName):
                    
27        super(type(self), self).initializeClass(testName)
                    
28        # Put test based setup code here. it is called before testing starts
                    
31    def setUp(self):
                    
32        super(type(self), self).setUp()
                    
33        initializeTestModule_SingleInstance(self)
                    
37        # Put test based teardown code here. it is called once after every test
                    
38        super(type(self), self).tearDown()
                    
39
                    
                
data.py https://github.com/iwtw/pytorch-TP-GAN.git | Python | 114 lines
                    
31    def __init__( self , img_list ):
                    
32        super(type(self),self).__init__()
                    
33        self.img_list = img_list
                    
69    def __init__( self , img_list ):
                    
70        super(type(self),self).__init__()
                    
71        self.img_list = img_list
                    
87    def __init__( self , img_list , lm_list):
                    
88        super(type(self),self).__init__()
                    
89        self.img_list = img_list
                    
                
txt.py https://github.com/draco003/chromium.git | Python | 52 lines
                    
21  def __init__(self, contents):
                    
22    super(type(self), self).__init__()
                    
23    self.text_ = contents
                    
                
unmountshare_tester.py https://github.com/hpe-storage/python-hpedockerplugin.git | Python | 70 lines
                    
51    def __init__(self, **kwargs):
                    
52        super(type(self), self).__init__(**kwargs)
                    
53
                    
                
instructions.py https://github.com/KULeuven-COSIC/SCALE-MAMBA.git | Python | 146 lines
                    
81    # def __init__(self, *args, **kwargs):
                    
82    #     super(type(self), self).__init__(*args, **kwargs)
                    
83    #     import inspect
                    
                
functional.py https://github.com/pytorch/pytorch.git | Python | 114 lines
                    
23            key = field_names_map[key]
                    
24        return super(type(self), self).__getitem__(key)
                    
25
                    
                
Form.py https://github.com/microsoftarchive/msdn-code-gallery-microsoft.git | Python | 36 lines
                    
20            
                    
21            super(type(self), self).Dispose(disposing)
                    
22        
                    
                
parser.py git://github.com/eigenhombre/PyClojure.git | Python | 145 lines
                    
26        if not _quiet:
                    
27            super(type(self), self).debug(*args, **kwargs)
                    
28
                    
                
weight_cast.py https://github.com/intel/intel-extension-for-pytorch.git | Python | 87 lines
                    
33            self.bias = torch.nn.Parameter(self.master_bias)
                    
34    super(type(self), self)._save_to_state_dict(destination, prefix, keep_vars)
                    
35    self.weight = temp_weight
                    
                
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,
                    
                
layers.py https://github.com/iwtw/pytorch-TP-GAN.git | Python | 105 lines
                    
77                ):
                    
78        super(type(self),self).__init__()
                    
79        if out_channels is None:
                    
                
file_picker.py https://github.com/tdamdouni/Pythonista.git | Python | 21 lines
                    
9        self.base=base
                    
10        super(type(self),self).__init__(frame=frame,name=name,items=self.path_generator)
                    
11
                    
                
TestZeroMeanGaussObsModel.py https://github.com/bnpy/bnpy.git | Python | 66 lines
                    
20                 **kwargs):
                    
21        super(type(self), self).__init__(testname)
                    
22        self.B = float(B)
                    
                
test_suite_all.py https://github.com/bluebellzhy/chromium.git | Python | 83 lines
                    
22  def __init__(self):
                    
23    super(type(self), self).__init__()
                    
24    # Imports placed here to prevent circular imports.
                    
                
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
                    
                
ATNDeserializationOptions.py https://github.com/alainmarcel/Surelog.git | Python | 21 lines
                    
16            raise Exception("The object is read only.")
                    
17        super(type(self), self).__setattr__(key,value)
                    
18
                    
                
common.py https://github.com/Paperspace/paperspace-python.git | Python | 61 lines
                    
55        click.echo(click.style(deprecated_invoke_notice, fg='red'), err=True)
                    
56        super(type(self), self).invoke(ctx)
                    
57
                    
                
conftest.py https://github.com/Epistimio/orion.git | Python | 39 lines
                    
8    self.params = params
                    
9    super(type(self), self).__init__(*args, **params)
                    
10
                    
                
mountshare_tester.py https://github.com/hpe-storage/python-hpedockerplugin.git | Python | 91 lines
                    
40    def __init__(self, **kwargs):
                    
41        super(type(self), self).__init__(**kwargs)
                    
42        self._share = copy.deepcopy(data.etcd_share)
                    
65    def __init__(self, **kwargs):
                    
66        super(type(self), self).__init__(**kwargs)
                    
67        self._share = copy.deepcopy(data.etcd_share_with_acl)
                    
                
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])
                    
                
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        
                    
                
lr_scheduler.py https://github.com/GRAAL-Research/pytoune.git | Python | 89 lines
                    
53    def f(self, *args, **kwargs):
                    
54        super(type(self), self).__init__(torch_lr_scheduler, *args, **kwargs)
                    
55
                    
                
include.py https://github.com/bluebellzhy/chromium.git | Python | 71 lines
                    
40    else:
                    
41      return super(type(self), self).ItemFormatter(t)
                    
42  
                    
                
test_utils.py https://bitbucket.org/MindTwister/vimconfig.git | Python | 100 lines
                    
11    def __init__(self, *args, **kwargs):
                    
12        super(type(self), self).__init__(*args, **kwargs)
                    
13
                    
                
test_audiotrack.py https://github.com/13rac1/roundware-server.git | Python | 59 lines
                    
16    def setUp(self):
                    
17        super(type(self), TestRoundStream).setUp(self)
                    
18
                    
                
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
                    
                
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()
                    
                
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)
                    
                
test_models.py https://github.com/13rac1/roundware-server.git | Python | 108 lines
                    
18    def setUp(self):
                    
19        super(type(self), TestUIGroup).setUp(self)
                    
20
                    
54    def setUp(self):
                    
55        super(type(self), TestProject).setUp(self)
                    
56        self.project = mommy.make('rw.Project')
                    
86    def setUp(self):
                    
87        super(type(self), TestAsset).setUp(self)
                    
88
                    
                
sibling_query.py https://github.com/elliterate/capybara.py.git | Python | 32 lines
                    
13        def resolve():
                    
14            match_result = super(type(self), self).resolve_for(
                    
15                node.session.current_scope, exact=exact)
                    
24    def description(self):
                    
25        description = super(type(self), self).description
                    
26
                    
                
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)
                    
                
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
                    
                
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
                    
                
admin.py https://github.com/peperzaken/django-site-permissions.git | Python | 63 lines
                    
34    def save_form(self, request, form, change):
                    
35        obj = super(type(self), self).save_form(request, form, change)
                    
36        try:
                    
51
                    
52        return super(type(self), self).save_model(request, obj, model, change)
                    
53
                    
54    def get_object(self, request, object_id):
                    
55        obj = super(type(self), self).get_object(request, object_id)
                    
56        if not obj is None and not hasattr(obj, "sites"):
                    
                
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
                    
                
StochasticOnlineVBLearnAlg.py https://github.com/daeilkim/refinery.git | Python | 75 lines
                    
14    '''
                    
15    super(type(self),self).__init__(**kwargs)
                    
16    self.rhodelay = self.algParams['rhodelay']
                    
                
comboxboxdelegate.py https://github.com/RalphoPalpho/Cards-Against-Sanity.git | Python | 38 lines
                    
9	def __init__(self, model, parent=None):
                    
10		super(type(self), self).__init__(parent)
                    
11		self.parent= parent
                    
                
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
                    
                
6.py https://github.com/KenjiTakahashi/kurs-Python.git | Python | 141 lines
                    
14        self.rlock = rlock
                    
15        super(type(self), self).__init__(self)
                    
16    def handle_starttag(self, tag, attrs):
                    
88        self.curfile = curfile
                    
89        super(type(self), self).__init__(self)
                    
90    def handle_starttag(self, tag, attrs):
                    
                
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
                    
                
json_loader.py https://github.com/lianliuwei/chromium_base.git | Python | 54 lines
                    
20    '''
                    
21    super(type(self), self).__init__()
                    
22    self._json_text = json_text
                    
                
localhost.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 109 lines
                    
29            kwargs.update(kws)
                    
30        super(type(self), self).__init__(msg, command=command, **kwargs)
                    
31        self.kws = kws
                    
40    def __init__(self, command, error, retcode, **kwargs):
                    
41        super(type(self), self).__init__(command, error=error,
                    
42                                                  retcode=retcode, kws=args)
                    
43    def _lines(self):
                    
44        return super(type(self), self)._lines() + [
                    
45                "retcode: %s" % self.retcode,
                    
51    def __init__(self, command, output, **kwargs):
                    
52        super(type(self), self).__init__(command, output=output, kws=args)
                    
53    def _lines(self):
                    
53    def _lines(self):
                    
54        return super(type(self), self)._lines() + [
                    
55                "output: %s" % self.retcode,
                    
                
HTMLTableParser.py https://github.com/alexdgarland/Weather_Analysis.git | Python | 65 lines
                    
26        if sys.version_info[0] >= 3:
                    
27            super(type(self), self).__init__(convert_charrefs=True)
                    
28        else:
                    
28        else:
                    
29            super(type(self), self).__init__()
                    
30            
                    
62        self._transition(ths.DefaultTagHandlingState)
                    
63        super(type(self), self).feed(html) 
                    
64
                    
                
vectors.py https://bitbucket.org/twright/c1000-intelligent-calculator.git | Python | 88 lines
                    
58    def __len__(self):
                    
59        return ht(super(type(self), self).__len__())
                    
60
                    
                
pyside_textedit.py https://bitbucket.org/ikeikeikeike/undo-redo | Python | 53 lines
                    
11    def __init__(self, MainWindow, *args, **kwargs):
                    
12        super(type(self), self).__init__(*args, **kwargs)
                    
13
                    
                
pyside_undo.py https://bitbucket.org/ikeikeikeike/undo-redo | Python | 60 lines
                    
23    def __init__(self, doc, *args, **kwargs):
                    
24        super(type(self), self).__init__(*args, **kwargs)
                    
25        self.document = doc
                    
                
StdinStream.py https://github.com/millergarym/antlr4.git | Python | 46 lines
                    
45		data = codecs.decode(bytes, encoding)
                    
46		super(type(self), self).__init__(data)
                    
                
robot_parts.py https://github.com/pkok/bsc-thesis.git | Python | 127 lines
                    
51    def __init__(self, orientation=False, rotation=False):
                    
52        super(type(self), self).__init__((orientation, rotation))
                    
53        self[0], self[1] = self._check(orientation, rotation)
                    
                
FileStream.py https://github.com/millergarym/antlr4.git | Python | 57 lines
                    
49            data = codecs.decode(bytes, encoding)
                    
50            super(type(self), self).__init__(data)
                    
51
                    
                
console.py https://github.com/bewest/insulaudit.git | Python | 75 lines
                    
18    import argparse, sys
                    
19    super(type(self), self).setup(parser)
                    
20    parser.add_argument('--output', type=argparse.FileType('w'),
                    
                
gtk_webkit_bridge.py https://github.com/gfxmonk/pjkit.git | Python | 42 lines
                    
9	def __init__(self, *a):
                    
10		super(type(self), self).__init__(*a)
                    
11		self.__ready = False
                    
                
panel.py https://github.com/jhasse/taluka.git | Python | 39 lines
                    
26	def __init__(self):
                    
27		super(type(self), self).__init__(self)
                    
28		self._notebook = gtk.Notebook()
                    
                
starthere.py https://github.com/jhasse/taluka.git | Python | 71 lines
                    
26	def __init__(self):
                    
27		super(type(self), self).__init__(self)
                    
28		
                    
                
repo_finder.py https://bitbucket.org/Thulsey/pythonista.git | Python | 20 lines
                    
7        self.exclude=exclude
                    
8        super(type(self),self).__init__(
                    
9                   frame=frame, 
                    
                
plugin_version.py https://github.com/rogovvladimir/xmpp-bot.git | Python | 60 lines
                    
17    def clean_body(self, value):
                    
18        super(type(self), self).clean_body(value)
                    
19        param = self.cmdpars.group(2)
                    
                
Errors.py https://github.com/alexdgarland/Weather_Analysis.git | Python | 11 lines
                    
9    def __init__(self, message):
                    
10        super(type(self), self).__init__("Badly-formed HTML - " + message)
                    
11
                    
                
experiments.py https://bitbucket.org/gabriele/filesnake | Python | 26 lines
                    
8    fname = f.__name__
                    
9    getattr(super(type(self),self),fname)(*a,**kw)
                    
10    return f(self,*a,**kw)
                    
                
StdinStream.py https://github.com/antlr/antlr4.git | Python | 21 lines
                    
20		data = codecs.decode(bytes, encoding, errors)
                    
21		super(type(self), self).__init__(data)
                    
22
                    
                
application.py https://github.com/joshmarshall/torn.git | Python | 18 lines
                    
17            setLoggerLevel(base_logger, loglevel)
                    
18        super(type(self), self).__init__(*args, **kwargs)
                    
19
                    
                
__builtins__.py https://bitbucket.org/ericsnowcurrently/commonlib | Python | 21 lines
                    
8    def _bypass(self, *args, **kwargs):
                    
9        super(type(self), self).update(*args, **kwargs)
                    
10    def update(self, other):
                    
17            self._handler(key, value)
                    
18        super(type(self), self).__setitem__(key, value)
                    
19
                    
                
Tutorial2Runner.py https://bitbucket.org/chadburrus/rabbitmq-tutorials.git | Python | 19 lines
                    
5	def __init__(self, count):
                    
6		super(type(self), self)
                    
7
                    
                
 

Source

Language