id
int64
1
6.07M
name
stringlengths
1
295
code
stringlengths
12
426k
language
stringclasses
1 value
source_file
stringlengths
5
202
start_line
int64
1
158k
end_line
int64
1
158k
repo
dict
5,801
__copy__
def __copy__(self): return type(self)( self.variable, self.type, self.default_value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
121
127
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,802
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
129
130
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,803
__init__
def __init__(self, selections, loc=None): self.loc = loc self.selections = selections
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
137
139
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,804
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, SelectionSet) and # self.loc == other.loc and self.selections == other.selections ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
141
148
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,805
__repr__
def __repr__(self): return ('SelectionSet(' 'selections={self.selections!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
150
153
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,806
__copy__
def __copy__(self): return type(self)( self.selections, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
155
159
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,807
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
161
162
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,808
__init__
def __init__(self, name, alias=None, arguments=None, directives=None, selection_set=None, loc=None): self.loc = loc self.alias = alias self.name = name self.arguments = arguments self.directives = directives self.selection_set = selection_set
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
173
179
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,809
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, Field) and # self.loc == other.loc and self.alias == other.alias and self.name == other.name and self.arguments == other.arguments and self.directives == other.directives and self.selection_set == other.selection_set ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
181
192
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,810
__repr__
def __repr__(self): return ('Field(' 'alias={self.alias!r}' ', name={self.name!r}' ', arguments={self.arguments!r}' ', directives={self.directives!r}' ', selection_set={self.selection_set!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
194
201
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,811
__copy__
def __copy__(self): return type(self)( self.name, self.alias, self.arguments, self.directives, self.selection_set, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
203
211
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,812
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
213
214
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,813
__init__
def __init__(self, name, value, loc=None): self.loc = loc self.name = name self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
221
224
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,814
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, Argument) and # self.loc == other.loc and self.name == other.name and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
226
234
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,815
__repr__
def __repr__(self): return ('Argument(' 'name={self.name!r}' ', value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
236
240
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,816
__copy__
def __copy__(self): return type(self)( self.name, self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
242
247
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,817
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
249
250
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,818
__init__
def __init__(self, name, directives=None, loc=None): self.loc = loc self.name = name self.directives = directives
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
257
260
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,819
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, FragmentSpread) and # self.loc == other.loc and self.name == other.name and self.directives == other.directives ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
262
270
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,820
__repr__
def __repr__(self): return ('FragmentSpread(' 'name={self.name!r}' ', directives={self.directives!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
272
276
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,821
__copy__
def __copy__(self): return type(self)( self.name, self.directives, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
278
283
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,822
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
285
286
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,823
__init__
def __init__(self, type_condition, selection_set, directives=None, loc=None): self.loc = loc self.type_condition = type_condition self.directives = directives self.selection_set = selection_set
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
293
297
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,824
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, InlineFragment) and # self.loc == other.loc and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
299
308
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,825
__repr__
def __repr__(self): return ('InlineFragment(' 'type_condition={self.type_condition!r}' ', directives={self.directives!r}' ', selection_set={self.selection_set!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
310
315
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,826
__copy__
def __copy__(self): return type(self)( self.type_condition, self.selection_set, self.directives, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
317
323
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,827
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
325
326
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,828
__init__
def __init__(self, name, type_condition, selection_set, directives=None, loc=None): self.loc = loc self.name = name self.type_condition = type_condition self.directives = directives self.selection_set = selection_set
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
333
338
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,829
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, FragmentDefinition) and # self.loc == other.loc and self.name == other.name and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
340
350
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,830
__repr__
def __repr__(self): return ('FragmentDefinition(' 'name={self.name!r}' ', type_condition={self.type_condition!r}' ', directives={self.directives!r}' ', selection_set={self.selection_set!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
352
358
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,831
__copy__
def __copy__(self): return type(self)( self.name, self.type_condition, self.selection_set, self.directives, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
360
367
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,832
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
369
370
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,833
__init__
def __init__(self, name, loc=None): self.loc = loc self.name = name
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
381
383
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,834
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, Variable) and # self.loc == other.loc and self.name == other.name ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
385
392
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,835
__repr__
def __repr__(self): return ('Variable(' 'name={self.name!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
394
397
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,836
__copy__
def __copy__(self): return type(self)( self.name, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
399
403
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,837
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
405
406
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,838
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
413
415
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,839
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, IntValue) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
417
424
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,840
__repr__
def __repr__(self): return ('IntValue(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
426
429
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,841
__copy__
def __copy__(self): return type(self)( self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
431
435
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,842
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
437
438
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,843
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
445
447
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,844
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, FloatValue) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
449
456
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,845
__repr__
def __repr__(self): return ('FloatValue(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
458
461
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,846
__copy__
def __copy__(self): return type(self)( self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
463
467
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,847
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
469
470
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,848
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
477
479
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,849
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, StringValue) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
481
488
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,850
__repr__
def __repr__(self): return ('StringValue(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
490
493
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,851
__copy__
def __copy__(self): return type(self)( self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
495
499
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,852
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
501
502
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,853
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
509
511
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,854
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, BooleanValue) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
513
520
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,855
__repr__
def __repr__(self): return ('BooleanValue(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
522
525
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,856
__copy__
def __copy__(self): return type(self)( self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
527
531
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,857
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
533
534
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,858
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
541
543
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,859
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, EnumValue) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
545
552
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,860
__repr__
def __repr__(self): return ('EnumValue(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
554
557
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,861
__copy__
def __copy__(self): return type(self)( self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
559
563
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,862
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
565
566
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,863
__init__
def __init__(self, values, loc=None): self.loc = loc self.values = values
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
573
575
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,864
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, ListValue) and # self.loc == other.loc and self.values == other.values ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
577
584
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,865
__repr__
def __repr__(self): return ('ListValue(' 'values={self.values!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
586
589
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,866
__copy__
def __copy__(self): return type(self)( self.values, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
591
595
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,867
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
597
598
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,868
__init__
def __init__(self, fields, loc=None): self.loc = loc self.fields = fields
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
605
607
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,869
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, ObjectValue) and # self.loc == other.loc and self.fields == other.fields ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
609
616
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,870
__repr__
def __repr__(self): return ('ObjectValue(' 'fields={self.fields!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
618
621
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,871
__copy__
def __copy__(self): return type(self)( self.fields, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
623
627
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,872
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
629
630
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,873
__init__
def __init__(self, name, value, loc=None): self.loc = loc self.name = name self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
637
640
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,874
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, ObjectField) and # self.loc == other.loc and self.name == other.name and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
642
650
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,875
__repr__
def __repr__(self): return ('ObjectField(' 'name={self.name!r}' ', value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
652
656
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,876
__copy__
def __copy__(self): return type(self)( self.name, self.value, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
658
663
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,877
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
665
666
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,878
__init__
def __init__(self, name, arguments=None, loc=None): self.loc = loc self.name = name self.arguments = arguments
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
673
676
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,879
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, Directive) and # self.loc == other.loc and self.name == other.name and self.arguments == other.arguments ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
678
686
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,880
__repr__
def __repr__(self): return ('Directive(' 'name={self.name!r}' ', arguments={self.arguments!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
688
692
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,881
__copy__
def __copy__(self): return type(self)( self.name, self.arguments, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
694
699
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,882
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
701
702
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,883
__init__
def __init__(self, name, loc=None): self.loc = loc self.name = name
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
713
715
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,884
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, NamedType) and # self.loc == other.loc and self.name == other.name ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
717
724
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,885
__repr__
def __repr__(self): return ('NamedType(' 'name={self.name!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
726
729
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,886
__copy__
def __copy__(self): return type(self)( self.name, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
731
735
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,887
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
737
738
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,888
__init__
def __init__(self, type, loc=None): self.loc = loc self.type = type
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
745
747
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,889
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, ListType) and # self.loc == other.loc and self.type == other.type ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
749
756
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,890
__repr__
def __repr__(self): return ('ListType(' 'type={self.type!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
758
761
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,891
__copy__
def __copy__(self): return type(self)( self.type, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
763
767
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,892
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
769
770
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,893
__init__
def __init__(self, type, loc=None): self.loc = loc self.type = type
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
777
779
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,894
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, NonNullType) and # self.loc == other.loc and self.type == other.type ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
781
788
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,895
__repr__
def __repr__(self): return ('NonNullType(' 'type={self.type!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
790
793
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,896
__copy__
def __copy__(self): return type(self)( self.type, self.loc )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
795
799
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,897
__hash__
def __hash__(self): return id(self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
801
802
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,898
__init__
def __init__(self, value, loc=None): self.loc = loc self.value = value
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
809
811
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,899
__eq__
def __eq__(self, other): return ( self is other or ( isinstance(other, Name) and # self.loc == other.loc and self.value == other.value ) )
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
813
820
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }
5,900
__repr__
def __repr__(self): return ('Name(' 'value={self.value!r}' ')').format(self=self)
python
wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py
822
825
{ "name": "Git-abouvier/wandb", "url": "https://github.com/Git-abouvier/wandb.git", "license": "MIT", "stars": 0, "forks": 0 }