PageRenderTime 29ms queryTime 47ms sortTime 2ms getByIdsTime 1351ms findMatchingLines 36ms

69+ results for 'super(self.__class__ lang:Python' (29 ms)

Not the results you expected?
forms.py https://github.com/openstate/Wiekiesjij.git | Python | 267 lines
                    
21    def __init__(self, *args, **kwargs):
                    
22        super(self.__class__, self).__init__(*args, **kwargs)
                    
23
                    
34    def __init__(self, queryset=None, empty_label=None, *args, **kwargs):
                    
35        super(self.__class__, self).__init__(*args, **kwargs)
                    
36
                    
                
panel_short.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 247 lines
                    
150        #super is taking care of endog, exog and sigma
                    
151        super(self.__class__, self).__init__(endog, exog, sigma=None)
                    
152
                    
                
__init__.py https://bitbucket.org/vinitkme/googlecl.git | Python | 266 lines
                    
95  def __init__(self, fields):
                    
96    super(self.__class__, self).__init__(self.avail_fields, fields)
                    
97
                    
118  def __init__(self, fields):
                    
119    super(self.__class__, self).__init__(self.avail_fields, fields)
                    
120
                    
138  def __init__(self, fields):
                    
139    super(self.__class__, self).__init__(self.avail_fields, fields)
                    
140
                    
                
review.py https://gitlab.com/dahbearz/CRYENGINE | Python | 328 lines
                    
116	def __init__(self, **kw):
                    
117		super(self.__class__, self).__init__(**kw)
                    
118
                    
146	def __init__(self, **kw):
                    
147		super(self.__class__, self).__init__(**kw)
                    
148
                    
                
gen_templates.py https://github.com/GordonSmith/FireBreath.git | Python | 273 lines
                    
15            raise ValueError('Unable to read file with name %s' % filename)
                    
16        super(self.__class__, self).__init__(open(filename).read())
                    
17
                    
                
__init__.py https://github.com/SlapOS/slapos.core.git | Python | 265 lines
                    
52    def get_parser(self, prog_name):
                    
53        ap = super(self.__class__, self).get_parser(prog_name)
                    
54
                    
                
admin.py https://bitbucket.org/giussepi/resinmetal.git | Python | 296 lines
                    
87        #     exp_flag = True
                    
88        query_set = super(self.__class__, self).queryset(request)
                    
89        # if exp_flag:
                    
105                    'min_experience') or 0})
                    
106        res = super(self.__class__, self).changelist_view(
                    
107            request, extra_context)
                    
121        """ disables actions for this ModelAdmin """
                    
122        actions = super(self.__class__, self).get_actions(request)
                    
123        del actions['delete_selected']
                    
244    def get_urls(self):
                    
245        urls = super(self.__class__, self).get_urls()
                    
246        my_urls = patterns(
                    
                
credentials.py https://github.com/openSUSE/osc.git | Python | 429 lines
                    
154        else:
                    
155            passwd = super(self.__class__, self).get_password(url, user)
                    
156        return self.decode_password(passwd)
                    
160        password = base64.b64encode(compressed_pw).decode("ascii")
                    
161        super(self.__class__, self).set_password(url, user, password)
                    
162
                    
164        self._cp.remove_option(url, 'passx')
                    
165        super(self.__class__, self).delete_password(url, user)
                    
166
                    
188    def __init__(self, *args, **kwargs):
                    
189        super(self.__class__, self).__init__(*args, **kwargs)
                    
190        self._password = None
                    
                
human_posture.py https://github.com/davidhodo/morse.git | Python | 223 lines
                    
144        # Call the constructor of the parent class
                    
145        super(self.__class__, self).__init__(obj, parent)
                    
146
                    
                
admin.py https://bitbucket.org/giussepi/meals-tracker.git | Python | 193 lines
                    
53        """
                    
54        queryset = super(self.__class__, self).queryset(request)
                    
55        if request.user.is_superuser:
                    
137        """
                    
138        return super(self.__class__, self).queryset(request).filter(
                    
139            user=request.user)
                    
174        """
                    
175        return super(self.__class__, self).queryset(request).filter(
                    
176            daily_consume__user=request.user)
                    
                
modeladmin.py https://bitbucket.org/pombredanne/dingo.git | Python | 151 lines
                    
50                             object_view_patterns)) + \
                    
51                           super(self.__class__, self).get_urls()
                    
52
                    
76
                    
77    return super(self.__class__, self).change_view(
                    
78        request, object_id, extra_context=extra_context)
                    
99
                    
100    return super(self.__class__, self).changelist_view(
                    
101        request, 
                    
                
permissionadmin.py https://github.com/Doap/django-cms.git | Python | 174 lines
                    
161        return self._has_change_permissions_permission(request) and \
                    
162            super(self.__class__, self).has_add_permission(request)
                    
163    
                    
165        return self._has_change_permissions_permission(request) and \
                    
166            super(self.__class__, self).has_change_permission(request, obj)
                    
167
                    
                
tibiacom.py https://code.google.com/p/anacrolix/ | Python | 359 lines
                    
12    def __init__(self, **kwargs):
                    
13        super(self.__class__, self).__init__()
                    
14        self.__data = {}
                    
                
filterspecs.py https://github.com/dedaluz/ella.git | Python | 247 lines
                    
220        if not hasattr(self, 'all_choices'):
                    
221            c = super(self.__class__, self).choices(cl)
                    
222            self.all_choices = map(None, c)
                    
                
widgets.py https://github.com/rpgplanet/ella.git | Python | 234 lines
                    
89
                    
90        super(self.__class__, self).__init__(attrs)
                    
91
                    
135
                    
136        super(self.__class__, self).__init__(attrs)
                    
137
                    
                
admin.py https://bitbucket.org/giussepi/resinmetal.git | Python | 357 lines
                    
20    def get_urls(self):
                    
21        urls = super(self.__class__, self).get_urls()
                    
22        my_urls = patterns(
                    
91    def get_urls(self):
                    
92        urls = super(self.__class__, self).get_urls()
                    
93        my_urls = patterns(
                    
147    def get_urls(self):
                    
148        urls = super(self.__class__, self).get_urls()
                    
149        my_urls = patterns(
                    
212    def get_urls(self):
                    
213        urls = super(self.__class__, self).get_urls()
                    
214        my_urls = patterns(
                    
277    def get_urls(self):
                    
278        urls = super(self.__class__, self).get_urls()
                    
279        my_urls = patterns(
                    
                
plugin.py https://bitbucket.org/Freso/supybot-code.git | Python | 211 lines
                    
68            # scope.  python--
                    
69            self.__parent = super(self.__class__, self)
                    
70            self.__parent.__init__(filename)
                    
                
extract.py https://gitlab.com/godotengine/godot | Python | 310 lines
                    
70        ## and copy its element position attributes into output Elements
                    
71        element = super(self.__class__, self)._start(*args, **kwargs)
                    
72        element._start_line_number = self.parser.CurrentLineNumber
                    
77    def _end(self, *args, **kwargs):
                    
78        element = super(self.__class__, self)._end(*args, **kwargs)
                    
79        element._end_line_number = self.parser.CurrentLineNumber
                    
                
redis.py https://github.com/pombredanne/django-sentry.git | Python | 242 lines
                    
90        try:
                    
91            return super(self.__class__, self).execute_command(*args, **kwargs)
                    
92        except (
                    
97            self.connection_pool.nodes.reset()
                    
98            return super(self.__class__, self).execute_command(*args, **kwargs)
                    
99
                    
                
__init__.py https://github.com/openstate/Wiekiesjij.git | Python | 294 lines
                    
37    def __init__(self, *args, **kwargs):
                    
38        super(self.__class__, self).__init__(*args, **kwargs)
                    
39        #self.fields['value'].widget = widgets.CheckboxSelectMultiple
                    
98    def __init__(self, *args, **kwargs):
                    
99        super(self.__class__, self).__init__(*args, **kwargs)
                    
100
                    
109    def __init__(self, queryset=None, empty_label=_('Geen voorkeur'), *args, **kwargs):
                    
110        super(self.__class__, self).__init__(*args, **kwargs)
                    
111
                    
149    def __init__(self, *args, **kwargs):
                    
150        super(self.__class__, self).__init__(*args, **kwargs)
                    
151
                    
173        else:
                    
174            return super(self.__class__, self).clean(value)
                    
175
                    
                
models.py https://github.com/robgolding63/coral.git | Python | 203 lines
                    
127			self.originally_assigned_to = self.assigned_to
                    
128		super(self.__class__, self).save(force_insert, force_update)
                    
129		
                    
                
views.py https://gitlab.com/lburdzy/asg | Python | 170 lines
                    
32        self.permission_classes = (IsOwnerOrReadOnly, )
                    
33        return super(self.__class__, self).update(request, *args, **kwargs)
                    
34
                    
                
__init__.py https://github.com/strogo/djpcms.git | Python | 274 lines
                    
25    addContentModel(self,djp,**kwargs)
                    
26    return super(self.__class__,self).get_url(djp, **kwargs)
                    
27    
                    
                
human_posture.py https://github.com/kargm/morse.git | Python | 153 lines
                    
22        # Call the constructor of the parent class
                    
23        super(self.__class__,self).__init__(obj, parent)
                    
24
                    
                
message.py https://github.com/mardiros/python-synapse.git | Python | 264 lines
                    
206        else:
                    
207            return super(self.__class__, self).default(obj)
                    
208
                    
                
dummy.py https://gitlab.com/c-3_po/postpic | Python | 238 lines
                    
43    def __init__(self, dumpid, dimensions=2, randfunc=np.random.normal, seed=0, **kwargs):
                    
44        super(self.__class__, self).__init__(dumpid, **kwargs)
                    
45        self._dimensions = dimensions
                    
63    def __eq__(self, other):
                    
64        ret = super(self.__class__, self).__eq__(other)
                    
65        return ret \
                    
197    def __init__(self, simidentifier, dimensions=2, **kwargs):
                    
198        super(self.__class__, self).__init__(simidentifier, **kwargs)
                    
199        self._dimensions = dimensions
                    
                
ast_utils.py http://nltk.googlecode.com/svn/trunk/ | Python | 217 lines
                    
76    def __init__(self, feature_types):
                    
77        super(self.__class__, self).__init__()
                    
78        self._feature_types = feature_types
                    
195    def __init__(self, feature_types):
                    
196        super(self.__class__, self).__init__()
                    
197        self._feature_types = feature_types
                    
                
dgp_examples.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 213 lines
                    
156        self.func = fg1
                    
157        super(self.__class__, self).__init__(nobs=nobs, x=x,
                    
158                                             distr_x=distr_x,
                    
173        self.func = fg2
                    
174        super(self.__class__, self).__init__(nobs=nobs, x=x,
                    
175                                             distr_x=distr_x,
                    
189        self.func = fg1eu
                    
190        super(self.__class__, self).__init__(nobs=nobs, x=x,
                    
191                                             distr_x=distr_x,
                    
                
sql.py https://github.com/hakanw/django-debug-toolbar.git | Python | 233 lines
                    
67    def __init__(self, *args, **kwargs):
                    
68        super(self.__class__, self).__init__(*args, **kwargs)
                    
69        self._offset = dict((k, len(connections[k].queries)) for k in connections)
                    
                
openPMDh5.py https://gitlab.com/c-3_po/postpic | Python | 200 lines
                    
49    def __init__(self, h5file, **kwargs):
                    
50        super(self.__class__, self).__init__(h5file, **kwargs)
                    
51        import os.path
                    
174    def __init__(self, simidentifier, dumpreadercls=OpenPMDreader, **kwargs):
                    
175        super(self.__class__, self).__init__(simidentifier, **kwargs)
                    
176        self.dumpreadercls = dumpreadercls
                    
                
sql.py https://github.com/lauritzen/django-debug-toolbar.git | Python | 217 lines
                    
140    def __init__(self, *args, **kwargs):
                    
141        super(self.__class__, self).__init__(*args, **kwargs)
                    
142        if hasattr(settings, 'DATABASES'):
                    
                
base.py https://github.com/hamilyon/stock_analizer.git | Python | 357 lines
                    
220            kwargs.update(nprms)
                    
221            super(self.__class__, self).__init__(*prms, **kwargs)
                    
222        attr['__init__'] = __init__
                    
                
metaclass.py https://github.com/e-loue/pyke.git | Python | 321 lines
                    
72                    else:
                    
73                        super(self.__class__, self).__setattr__(attr, value)
                    
74
                    
76                # does not work to call super.__setattr__
                    
77                #super(self.__class__, self).__setattr__(attr, value)
                    
78                #
                    
                
split_repr.py https://github.com/sporkexec/urwid.git | Python | 149 lines
                    
54        # to the previous __repr__ implementation instead
                    
55        return super(self.__class__, self).__repr__()
                    
56    if words and alist: words.append("")
                    
                
gui.py https://github.com/TheGurke/Progenitus.git | Python | 245 lines
                    
23	def __init__(self):
                    
24		super(self.__class__, self).__init__()
                    
25		self.load(config.GTKBUILDER_UPDATER)
                    
                
template.py https://github.com/mucca/django-debug-toolbar.git | Python | 122 lines
                    
46    def __init__(self, *args, **kwargs):
                    
47        super(self.__class__, self).__init__(*args, **kwargs)
                    
48        self.templates = []
                    
                
penalized.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 363 lines
                    
67        self.sigma_prior_inv = np.linalg.pinv(sigma_prior) #or inv
                    
68        super(self.__class__, self).__init__(endog, exog, sigma=sigma)
                    
69
                    
                
sql.py https://github.com/stevejalim/django-debug-toolbar.git | Python | 218 lines
                    
141    def __init__(self, *args, **kwargs):
                    
142        super(self.__class__, self).__init__(*args, **kwargs)
                    
143        self._offset = len(connection.queries)
                    
                
vocabcompiler.py https://gitlab.com/leiftomas/jasper-client | Python | 563 lines
                    
199        """
                    
200        return super(self.__class__, self).is_compiled
                    
201
                    
237        """
                    
238        return (super(self.__class__, self).is_compiled and
                    
239                os.access(self.languagemodel_file, os.R_OK) and
                    
391    def is_compiled(self):
                    
392        return (super(self.__class__, self).is_compiled and
                    
393                os.access(self.dfa_file, os.R_OK) and
                    
                
tts.py https://gitlab.com/leiftomas/jasper-client | Python | 711 lines
                    
141                 words_per_minute=160):
                    
142        super(self.__class__, self).__init__()
                    
143        self.voice = voice
                    
252    def __init__(self, voice=''):
                    
253        super(self.__class__, self).__init__()
                    
254        self.voice = voice if voice and voice in self.get_voices() else ''
                    
357    def __init__(self, language="en-US"):
                    
358        super(self.__class__, self).__init__()
                    
359        self.language = language
                    
428    def __init__(self, language='en'):
                    
429        super(self.__class__, self).__init__()
                    
430        self.language = language
                    
                
panels.py https://github.com/linuxnow/flask-mongoengine.git | Python | 192 lines
                    
163    def __init__(self, *args, **kwargs):
                    
164        super(self.__class__, self).__init__(*args, **kwargs)
                    
165        operation_tracker.install_tracker()
                    
                
ui.py https://bitbucket.org/hongquan/qphotoupload.git | Python | 618 lines
                    
70        uifile = get_ui_file('main')
                    
71        super(self.__class__, self).__init__(uifile)
                    
72        self.app = app
                    
                
gui.py https://github.com/TheGurke/Progenitus.git | Python | 1366 lines
                    
37	def __init__(self):
                    
38		super(self.__class__, self).__init__()
                    
39		self.load(config.GTKBUILDER_DECKEDITOR)
                    
                
gui.py https://github.com/TheGurke/Progenitus.git | Python | 1176 lines
                    
43	def __init__(self, solitaire):
                    
44		super(self.__class__, self).__init__()
                    
45		self.load(config.GTKBUILDER_CLIENT)
                    
                
desktop.py https://github.com/TheGurke/Progenitus.git | Python | 899 lines
                    
85	def __init__(self, interface, eventbox=None):
                    
86		super(self.__class__, self).__init__()
                    
87		self.picfactory = pics.PicFactory()
                    
                
test_systems.py https://gitlab.com/github-cloud-corp/aws-cli | Python | 354 lines
                    
219    def setUp(self):
                    
220        super(self.__class__, self).setUp()
                    
221        self.ubuntu = Ubuntu(self.params)
                    
287    def setUp(self):
                    
288        super(self.__class__, self).setUp()
                    
289        self.rhel = RHEL(self.params)
                    
                
config.py https://github.com/renfers/ageliaco.tracker.git | Python | 120 lines
                    
112
                    
113        super(self.__class__, self).__init__(register_config)
                    
114
                    
                
model.py https://github.com/HonzaKral/bulbs.git | Python | 481 lines
                    
155        # Using super here b/c Vertex and Edge have different create methods
                    
156        #resp = super(self.__class__,self).create(*args,raw=True)
                    
157        # got a "mismatched input, expecting double star" in Jython so
                    
198        self.before_updated()
                    
199        #resp = super(self.__class__,self).update(self.eid,data,raw=True)
                    
200        resp = self._element_proxy.update(self.eid,data,raw=True)
                    
209        self.before_deleted()
                    
210        #resp = super(self.__class__,self).delete(self)
                    
211        resp = self._element_proxy.delete(self)
                    
                
iso.py https://github.com/Flumotion/mp4seek.git | Python | 1339 lines
                    
77                elif bases and bases[0] != object:
                    
78                    super(self.__class__, self).__init__(*a, **kw)
                    
79                    self.__dict__.update(f_dict)
                    
                
common.py https://bitbucket.org/philippkueng/ckan-liip.git | Python | 992 lines
                    
160            self._null_option = (_('(None)'), u'')
                    
161            super(self.__class__, self).__init__(*args, **kwargs)
                    
162
                    
183        def __init__(self, *args, **kwargs):
                    
184            super(self.__class__, self).__init__(*args, **kwargs)
                    
185
                    
                
models.py https://bitbucket.org/giussepi/meals-tracker.git | Python | 535 lines
                    
37    #     self.calories = self.calculate_calories()
                    
38    #     super(self.__class__, self).save(*args, **kwargs)
                    
39
                    
196        self.calories = self.calculate_calories()
                    
197        super(self.__class__, self).save(*args, **kwargs)
                    
198
                    
                
semantic_camera.py https://github.com/davidhodo/morse.git | Python | 166 lines
                    
61        # Call the constructor of the parent class
                    
62        super(self.__class__, self).__init__(obj, parent)
                    
63
                    
109        # Call the action of the parent class
                    
110        super(self.__class__, self).default_action()
                    
111
                    
                
guiController.py https://gitlab.com/dilipv46/plot-to-table-2016 | Python | 426 lines
                    
128        # access variables, methods etc in the design.py file
                    
129        super(self.__class__, self).__init__()
                    
130        self.setupUi(self)  # This is defined in design.py file automatically
                    
                
Expression.py https://github.com/neonux/mozilla-all.git | Python | 176 lines
                    
132      self.type = type
                    
133      super(self.__class__, self).__init__(self)
                    
134  
                    
174    if key in self:
                    
175      return super(self.__class__, self).__getitem__(key)
                    
176    return key
                    
                
sphinx_cython.py https://github.com/thurday/pyzmq.git | Python | 111 lines
                    
87                    return cls.format_args(self)
                    
88            # return super(self.__class__, self).format_args()  
                    
89
                    
                
models.py https://gitlab.com/wiechapeter/pyGDM2-dirty | Python | 973 lines
                    
186        ## --- init basemodel with simulation instance
                    
187        super(self.__class__, self).__init__(sim)
                    
188        
                    
247        ## --- init basemodel with simulation instance
                    
248        super(self.__class__, self).__init__(sim)
                    
249        
                    
321        ## --- init basemodel with simulation instance
                    
322        super(self.__class__, self).__init__(sim)
                    
323        
                    
389        """
                    
390        super(self.__class__, self).__init__(sim)
                    
391        
                    
                
problems.py https://gitlab.com/wiechapeter/pyGDM2-dirty | Python | 487 lines
                    
186        """constructor"""
                    
187        super(self.__class__, self).__init__(model, field_index, 
                    
188                                         maximize=maximize, nthreads=nthreads)
                    
265        """constructor"""
                    
266        super(self.__class__, self).__init__(model, field_index, 
                    
267                                         maximize=maximize, nthreads=nthreads)
                    
385        ## --- init base class
                    
386        super(self.__class__, self).__init__(model, field_index, 
                    
387                                         maximize=maximize, nthreads=nthreads)
                    
                
urls.py https://github.com/rossp/django-helpdesk.git | Python | 234 lines
                    
35    def get_context_data(self, **kwargs):
                    
36        context = super(self.__class__, self).get_context_data(**kwargs)
                    
37        if self.extra_context is not None:
                    
                
xpath.py https://github.com/openSUSE/osc2.git | Python | 876 lines
                    
250                """
                    
251                super(self.__class__, self).__init__(*args, **kwargs)
                    
252                self._delegate = delegate
                    
                
parameters.py https://github.com/eteq/astropy.git | Python | 954 lines
                    
100                # anyways
                    
101                return super(self.__class__, self).__lt__(val)
                    
102            else:
                    
                
pullrequest.py https://bitbucket.org/Tufts/python-bitbucket.git | Python | 381 lines
                    
65            destination_repository_name=None):
                    
66        super(self.__class__, self).__init__(payload=payload)
                    
67        self._destination_repository_owner = destination_repository_owner
                    
                
models.py https://gitlab.com/epicglue/epicglue-py | Python | 710 lines
                    
75        # if not self.does_hash_exist():
                    
76        #     super(self.__class__, self).save()
                    
77        #     log.debug('Updated -- %s' % str(self))
                    
90        try:
                    
91            super(self.__class__, self).save()
                    
92        except IntegrityError, e:
                    
                
registration.py https://github.com/jhesketh/zookeepr.git | Python | 1039 lines
                    
45    def __init__(self, checkin_name, checkout_name):
                    
46        super(self.__class__, self).__init__()
                    
47        self.checkin = checkin_name
                    
68    def __init__(self, silly_name, checksum_name):
                    
69        super(self.__class__, self).__init__()
                    
70        self.__silly_name = silly_name
                    
84    def __init__(self, list, if_missing=None):
                    
85        super(self.__class__, self).__init__(if_missing=if_missing)
                    
86        self.__list = list
                    
                
db.py https://bitbucket.org/frosth/dotcloud | Python | 306 lines
                    
36        self._typename = typename
                    
37        super(self.__class__, self).__init__(self._view())
                    
38        # FIXME: delete duplicates
                    
151            kw["js_reduce"] = self.views[name].get("reduce")
                    
152        return super(self.__class__, self).view(name, *args, **kw)
                    
153
                    
207    def __init__(self, **override):
                    
208        super(self.__class__, self).__init__()
                    
209        config_search = os.environ.get("DOTCLOUD_CONFIG_PATH", "/etc/dotcloud").split(":")
                    
                
scoring.py https://github.com/floppya/Whoosh-AppEngine.git | Python | 349 lines
                    
93        
                    
94        super(self.__class__, self).__init__()
                    
95        self.K1 = K1
                    
154    def __init__(self, k = 0.5):
                    
155        super(self.__class__, self).__init__()
                    
156        self.k = k
                    
176    def __init__(self, c = 0.15):
                    
177        super(self.__class__, self).__init__()
                    
178        self.c = c
                    
194    def __init__(self, c = 1.0):
                    
195        super(self.__class__, self).__init__()
                    
196        self.c = c
                    
                
views.py https://github.com/jannon/django-avatar.git | Python | 220 lines
                    
214    def post(self, request, *args, **kwargs):
                    
215        super(self.__class__, self).post(request, *args, **kwargs)
                    
216        return self.render_primary()
                    
218    def get(self, request, *args, **kwargs):
                    
219        super(self.__class__, self).get(request, *args, **kwargs)
                    
220        return self.render_primary()
                    
                
permissionadmin.py https://github.com/keimlink/django-cms.git | Python | 228 lines
                    
215        return self._has_change_permissions_permission(request) and \
                    
216               super(self.__class__, self).has_add_permission(request)
                    
217
                    
219        return self._has_change_permissions_permission(request) and \
                    
220               super(self.__class__, self).has_change_permission(request, obj)
                    
221
                    
                
owpaintdata.py https://gitlab.com/zaverichintan/orange3 | Python | 1237 lines
                    
165            else:
                    
166                getattr(super(self.__class__, self), eventType)(event)
                    
167
                    
                
gui.py https://gitlab.com/zaverichintan/orange3 | Python | 1343 lines
                    
64            def _f(selected, deselected):
                    
65                super(self.__class__, self).selectionChanged(selected, deselected)
                    
66                func(selected, deselected)
                    
                
 

Source

Language