1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
|
import unittest
from pypy.interpreter import eval
from pypy.interpreter.function import Function, Method, descr_function_get
from pypy.interpreter.pycode import PyCode
from pypy.interpreter.argument import Arguments
class AppTestFunctionIntrospection:
def test_attributes(self):
globals()['__name__'] = 'mymodulename'
def f(): pass
assert hasattr(f, 'func_code')
assert f.func_defaults == None
f.func_defaults = None
assert f.func_defaults == None
assert f.func_dict == {}
assert type(f.func_globals) == dict
assert f.func_globals is f.__globals__
assert f.func_closure is None
assert f.func_doc == None
assert f.func_name == 'f'
assert f.__module__ == 'mymodulename'
def test_code_is_ok(self):
def f(): pass
assert not hasattr(f.func_code, '__dict__')
def test_underunder_attributes(self):
def f(): pass
assert f.__name__ == 'f'
assert f.__doc__ == None
assert f.__name__ == f.func_name
assert f.__doc__ == f.func_doc
assert f.__dict__ is f.func_dict
assert f.__code__ is f.func_code
assert f.__defaults__ is f.func_defaults
assert hasattr(f, '__class__')
def test_classmethod(self):
def f():
pass
assert classmethod(f).__func__ is f
assert staticmethod(f).__func__ is f
def test_write_doc(self):
def f(): "hello"
assert f.__doc__ == 'hello'
f.__doc__ = 'good bye'
assert f.__doc__ == 'good bye'
del f.__doc__
assert f.__doc__ == None
def test_write_func_doc(self):
def f(): "hello"
assert f.func_doc == 'hello'
f.func_doc = 'good bye'
assert f.func_doc == 'good bye'
del f.func_doc
assert f.func_doc == None
def test_write_module(self):
def f(): "hello"
f.__module__ = 'ab.c'
assert f.__module__ == 'ab.c'
del f.__module__
assert f.__module__ is None
def test_new(self):
def f(): return 42
FuncType = type(f)
f2 = FuncType(f.func_code, f.func_globals, 'f2', None, None)
assert f2() == 42
def g(x):
def f():
return x
return f
f = g(42)
raises(TypeError, FuncType, f.func_code, f.func_globals, 'f2', None, None)
def test_write_code(self):
def f():
return 42
def g():
return 41
assert f() == 42
assert g() == 41
raises(TypeError, "f.func_code = 1")
f.func_code = g.func_code
assert f() == 41
def h():
return f() # a closure
raises(ValueError, "f.func_code = h.func_code")
def test_write_code_builtin_forbidden(self):
def f(*args):
return 42
raises(TypeError, "dir.func_code = f.func_code")
raises(TypeError, "list.append.im_func.func_code = f.func_code")
def test_set_module_to_name_eagerly(self):
skip("fails on PyPy but works on CPython. Unsure we want to care")
exec '''if 1:
__name__ = "foo"
def f(): pass
__name__ = "bar"
assert f.__module__ == "foo"''' in {}
class AppTestFunction:
def test_simple_call(self):
def func(arg1, arg2):
return arg1, arg2
res = func(23,42)
assert res[0] == 23
assert res[1] == 42
def test_simple_call_default(self):
def func(arg1, arg2=11, arg3=111):
return arg1, arg2, arg3
res = func(1)
assert res[0] == 1
assert res[1] == 11
assert res[2] == 111
res = func(1, 22)
assert res[0] == 1
assert res[1] == 22
assert res[2] == 111
res = func(1, 22, 333)
assert res[0] == 1
assert res[1] == 22
assert res[2] == 333
raises(TypeError, func)
raises(TypeError, func, 1, 2, 3, 4)
def test_simple_varargs(self):
def func(arg1, *args):
return arg1, args
res = func(23,42)
assert res[0] == 23
assert res[1] == (42,)
res = func(23, *(42,))
assert res[0] == 23
assert res[1] == (42,)
def test_simple_kwargs(self):
def func(arg1, **kwargs):
return arg1, kwargs
res = func(23, value=42)
assert res[0] == 23
assert res[1] == {'value': 42}
res = func(23, **{'value': 42})
assert res[0] == 23
assert res[1] == {'value': 42}
def test_kwargs_sets_wrong_positional_raises(self):
def func(arg1):
pass
raises(TypeError, func, arg2=23)
def test_kwargs_sets_positional(self):
def func(arg1):
return arg1
res = func(arg1=42)
assert res == 42
def test_kwargs_sets_positional_mixed(self):
def func(arg1, **kw):
return arg1, kw
res = func(arg1=42, something=23)
assert res[0] == 42
assert res[1] == {'something': 23}
def test_kwargs_sets_positional_twice(self):
def func(arg1, **kw):
return arg1, kw
raises(
TypeError, func, 42, {'arg1': 23})
def test_kwargs_nondict_mapping(self):
class Mapping:
def keys(self):
return ('a', 'b')
def __getitem__(self, key):
return key
def func(arg1, **kw):
return arg1, kw
res = func(23, **Mapping())
assert res[0] == 23
assert res[1] == {'a': 'a', 'b': 'b'}
error = raises(TypeError, lambda: func(42, **[]))
assert error.value.message == ('argument after ** must be a mapping, '
'not list')
def test_default_arg(self):
def func(arg1,arg2=42):
return arg1, arg2
res = func(arg1=23)
assert res[0] == 23
assert res[1] == 42
def test_defaults_keyword_overrides(self):
def func(arg1=42, arg2=23):
return arg1, arg2
res = func(arg1=23)
assert res[0] == 23
assert res[1] == 23
def test_defaults_keyword_override_but_leaves_empty_positional(self):
def func(arg1,arg2=42):
return arg1, arg2
raises(TypeError, func, arg2=23)
def test_kwargs_disallows_same_name_twice(self):
def func(arg1, **kw):
return arg1, kw
raises(TypeError, func, 42, **{'arg1': 23})
def test_kwargs_bound_blind(self):
class A(object):
def func(self, **kw):
return self, kw
func = A().func
# don't want the extra argument passing of raises
try:
func(self=23)
assert False
except TypeError:
pass
try:
func(**{'self': 23})
assert False
except TypeError:
pass
def test_kwargs_confusing_name(self):
def func(self): # 'self' conflicts with the interp-level
return self*7 # argument to call_function()
res = func(self=6)
assert res == 42
def test_get(self):
def func(self): return self
obj = object()
meth = func.__get__(obj, object)
assert meth() == obj
def test_no_get_builtin(self):
assert not hasattr(dir, '__get__')
class A(object):
ord = ord
a = A()
assert a.ord('a') == 97
def test_builtin_as_special_method_is_not_bound(self):
class A(object):
__getattr__ = len
a = A()
assert a.a == 1
assert a.ab == 2
assert a.abcdefghij == 10
def test_call_builtin(self):
s = 'hello'
raises(TypeError, len)
assert len(s) == 5
raises(TypeError, len, s, s)
raises(TypeError, len, s, s, s)
assert len(*[s]) == 5
assert len(s, *[]) == 5
raises(TypeError, len, some_unknown_keyword=s)
raises(TypeError, len, s, some_unknown_keyword=s)
raises(TypeError, len, s, s, some_unknown_keyword=s)
def test_call_error_message(self):
try:
len()
except TypeError, e:
assert "len() takes exactly 1 argument (0 given)" in e.message
else:
assert 0, "did not raise"
try:
len(1, 2)
except TypeError, e:
assert "len() takes exactly 1 argument (2 given)" in e.message
else:
assert 0, "did not raise"
def test_unicode_docstring(self):
def f():
u"hi"
assert f.__doc__ == u"hi"
assert type(f.__doc__) is unicode
def test_issue1293(self):
def f1(): "doc f1"
def f2(): "doc f2"
f1.func_code = f2.func_code
assert f1.__doc__ == "doc f1"
def test_subclassing(self):
# cannot subclass 'function' or 'builtin_function'
def f():
pass
raises(TypeError, type, 'Foo', (type(f),), {})
raises(TypeError, type, 'Foo', (type(len),), {})
def test_lambda_docstring(self):
# Like CPython, (lambda:"foo") has a docstring of "foo".
# But let's not test that. Just test that (lambda:42) does not
# have 42 as docstring.
f = lambda: 42
assert f.func_doc is None
def test_setstate_called_with_wrong_args(self):
f = lambda: 42
# not sure what it should raise, since CPython doesn't have setstate
# on function types
raises(ValueError, type(f).__setstate__, f, (1, 2, 3))
class AppTestMethod:
def test_simple_call(self):
class A(object):
def func(self, arg2):
return self, arg2
a = A()
res = a.func(42)
assert res[0] is a
assert res[1] == 42
def test_simple_varargs(self):
class A(object):
def func(self, *args):
return self, args
a = A()
res = a.func(42)
assert res[0] is a
assert res[1] == (42,)
res = a.func(*(42,))
assert res[0] is a
assert res[1] == (42,)
def test_obscure_varargs(self):
class A(object):
def func(*args):
return args
a = A()
res = a.func(42)
assert res[0] is a
assert res[1] == 42
res = a.func(*(42,))
assert res[0] is a
assert res[1] == 42
def test_simple_kwargs(self):
class A(object):
def func(self, **kwargs):
return self, kwargs
a = A()
res = a.func(value=42)
assert res[0] is a
assert res[1] == {'value': 42}
res = a.func(**{'value': 42})
assert res[0] is a
assert res[1] == {'value': 42}
def test_get(self):
def func(self): return self
class Object(object): pass
obj = Object()
# Create bound method from function
obj.meth = func.__get__(obj, Object)
assert obj.meth() == obj
# Create bound method from method
meth2 = obj.meth.__get__(obj, Object)
assert meth2() == obj
def test_get_get(self):
# sanxiyn's test from email
def m(self): return self
class C(object): pass
class D(C): pass
C.m = m
D.m = C.m
c = C()
assert c.m() == c
d = D()
assert d.m() == d
def test_method_eq(self):
class C(object):
def m(): pass
c = C()
assert C.m == C.m
assert c.m == c.m
assert not (C.m == c.m)
assert not (c.m == C.m)
c2 = C()
assert (c.m == c2.m) is False
assert (c.m != c2.m) is True
assert (c.m != c.m) is False
def test_method_hash(self):
class C(object):
def m(): pass
class D(C):
pass
c = C()
assert hash(C.m) == hash(D.m)
assert hash(c.m) == hash(c.m)
def test_method_repr(self):
class A(object):
def f(self):
pass
assert repr(A.f) == "<unbound method A.f>"
assert repr(A().f).startswith("<bound method A.f of <")
assert repr(A().f).endswith(">>")
class B:
def f(self):
pass
assert repr(B.f) == "<unbound method B.f>"
assert repr(B().f).startswith("<bound method B.f of <")
assert repr(A().f).endswith(">>")
def test_method_call(self):
class C(object):
def __init__(self, **kw):
pass
c = C(type='test')
def test_method_w_callable(self):
class A(object):
def __call__(self, x):
return x
import new
im = new.instancemethod(A(), 3)
assert im() == 3
def test_method_w_callable_call_function(self):
class A(object):
def __call__(self, x, y):
return x+y
import new
im = new.instancemethod(A(), 3)
assert map(im, [4]) == [7]
def test_unbound_typecheck(self):
class A(object):
def foo(self, *args):
return args
class B(A):
pass
class C(A):
pass
assert A.foo(A(), 42) == (42,)
assert A.foo(B(), 42) == (42,)
raises(TypeError, A.foo, 5)
raises(TypeError, B.foo, C())
try:
class Fun:
__metaclass__ = A.foo
assert 0 # should have raised
except TypeError:
pass
class Fun:
__metaclass__ = A().foo
assert Fun[:2] == ('Fun', ())
def test_unbound_abstract_typecheck(self):
import new
def f(*args):
return args
m = new.instancemethod(f, None, "foobar")
raises(TypeError, m)
raises(TypeError, m, None)
raises(TypeError, m, "egg")
m = new.instancemethod(f, None, (str, int)) # really obscure...
assert m(4) == (4,)
assert m("uh") == ("uh",)
raises(TypeError, m, [])
class MyBaseInst(object):
pass
class MyInst(MyBaseInst):
def __init__(self, myclass):
self.myclass = myclass
def __class__(self):
if self.myclass is None:
raise AttributeError
return self.myclass
__class__ = property(__class__)
class MyClass(object):
pass
BBase = MyClass()
BSub1 = MyClass()
BSub2 = MyClass()
BBase.__bases__ = ()
BSub1.__bases__ = (BBase,)
BSub2.__bases__ = (BBase,)
x = MyInst(BSub1)
m = new.instancemethod(f, None, BSub1)
assert m(x) == (x,)
raises(TypeError, m, MyInst(BBase))
raises(TypeError, m, MyInst(BSub2))
raises(TypeError, m, MyInst(None))
raises(TypeError, m, MyInst(42))
def test_invalid_creation(self):
import new
def f(): pass
raises(TypeError, new.instancemethod, f, None)
def test_empty_arg_kwarg_call(self):
def f():
pass
raises(TypeError, lambda: f(*0))
raises(TypeError, lambda: f(**0))
def test_method_equal(self):
class A(object):
def m(self):
pass
class X(object):
def __eq__(self, other):
return True
assert A().m == X()
assert X() == A().m
class TestMethod:
def setup_method(self, method):
def c(self, bar):
return bar
code = PyCode._from_code(self.space, c.func_code)
self.fn = Function(self.space, code, self.space.newdict())
def test_get(self):
space = self.space
w_meth = descr_function_get(space, self.fn, space.wrap(5), space.type(space.wrap(5)))
meth = space.unwrap(w_meth)
assert isinstance(meth, Method)
def test_call(self):
space = self.space
w_meth = descr_function_get(space, self.fn, space.wrap(5), space.type(space.wrap(5)))
meth = space.unwrap(w_meth)
w_result = meth.call_args(Arguments(space, [space.wrap(42)]))
assert space.unwrap(w_result) == 42
def test_fail_call(self):
space = self.space
w_meth = descr_function_get(space, self.fn, space.wrap(5), space.type(space.wrap(5)))
meth = space.unwrap(w_meth)
args = Arguments(space, [space.wrap("spam"), space.wrap("egg")])
self.space.raises_w(self.space.w_TypeError, meth.call_args, args)
def test_method_get(self):
space = self.space
# Create some function for this test only
def m(self): return self
func = Function(space, PyCode._from_code(self.space, m.func_code),
space.newdict())
# Some shorthands
obj1 = space.wrap(23)
obj2 = space.wrap(42)
args = Arguments(space, [])
# Check method returned from func.__get__()
w_meth1 = descr_function_get(space, func, obj1, space.type(obj1))
meth1 = space.unwrap(w_meth1)
assert isinstance(meth1, Method)
assert meth1.call_args(args) == obj1
# Check method returned from method.__get__()
# --- meth1 is already bound so meth1.__get__(*) is meth1.
w_meth2 = meth1.descr_method_get(obj2, space.type(obj2))
meth2 = space.unwrap(w_meth2)
assert isinstance(meth2, Method)
assert meth2.call_args(args) == obj1
# Check method returned from unbound_method.__get__()
w_meth3 = descr_function_get(space, func, space.w_None, space.type(obj2))
meth3 = space.unwrap(w_meth3)
w_meth4 = meth3.descr_method_get(obj2, space.w_None)
meth4 = space.unwrap(w_meth4)
assert isinstance(meth4, Method)
assert meth4.call_args(args) == obj2
# Check method returned from unbound_method.__get__()
# --- with an incompatible class
w_meth5 = meth3.descr_method_get(space.wrap('hello'), space.w_str)
assert space.is_w(w_meth5, w_meth3)
# Same thing, with an old-style class
w_oldclass = space.call_function(
space.builtin.get('__metaclass__'),
space.wrap('OldClass'), space.newtuple([]), space.newdict())
w_meth6 = meth3.descr_method_get(space.wrap('hello'), w_oldclass)
assert space.is_w(w_meth6, w_meth3)
# Reverse order of old/new styles
w_meth7 = descr_function_get(space, func, space.w_None, w_oldclass)
meth7 = space.unwrap(w_meth7)
w_meth8 = meth7.descr_method_get(space.wrap('hello'), space.w_str)
assert space.is_w(w_meth8, w_meth7)
class TestShortcuts(object):
def test_call_function(self):
space = self.space
d = {}
for i in range(10):
args = "(" + ''.join(["a%d," % a for a in range(i)]) + ")"
exec """
def f%s:
return %s
""" % (args, args) in d
f = d['f']
res = f(*range(i))
code = PyCode._from_code(self.space, f.func_code)
fn = Function(self.space, code, self.space.newdict())
assert fn.code.fast_natural_arity == i|PyCode.FLATPYCALL
if i < 5:
def bomb(*args):
assert False, "shortcutting should have avoided this"
code.funcrun = bomb
code.funcrun_obj = bomb
args_w = map(space.wrap, range(i))
w_res = space.call_function(fn, *args_w)
check = space.is_true(space.eq(w_res, space.wrap(res)))
assert check
def test_flatcall(self):
space = self.space
def f(a):
return a
code = PyCode._from_code(self.space, f.func_code)
fn = Function(self.space, code, self.space.newdict())
assert fn.code.fast_natural_arity == 1|PyCode.FLATPYCALL
def bomb(*args):
assert False, "shortcutting should have avoided this"
code.funcrun = bomb
code.funcrun_obj = bomb
w_3 = space.newint(3)
w_res = space.call_function(fn, w_3)
assert w_res is w_3
w_res = space.appexec([fn, w_3], """(f, x):
return f(x)
""")
assert w_res is w_3
def test_flatcall_method(self):
space = self.space
def f(self, a):
return a
code = PyCode._from_code(self.space, f.func_code)
fn = Function(self.space, code, self.space.newdict())
assert fn.code.fast_natural_arity == 2|PyCode.FLATPYCALL
def bomb(*args):
assert False, "shortcutting should have avoided this"
code.funcrun = bomb
code.funcrun_obj = bomb
w_3 = space.newint(3)
w_res = space.appexec([fn, w_3], """(f, x):
class A(object):
m = f
y = A().m(x)
b = A().m
z = b(x)
return y is x and z is x
""")
assert space.is_true(w_res)
def test_flatcall_default_arg(self):
space = self.space
def f(a, b):
return a+b
code = PyCode._from_code(self.space, f.func_code)
fn = Function(self.space, code, self.space.newdict(),
defs_w=[space.newint(1)])
assert fn.code.fast_natural_arity == 2|eval.Code.FLATPYCALL
def bomb(*args):
assert False, "shortcutting should have avoided this"
code.funcrun = bomb
code.funcrun_obj = bomb
w_3 = space.newint(3)
w_4 = space.newint(4)
# ignore this for now
#w_res = space.call_function(fn, w_3)
# assert space.eq_w(w_res, w_4)
w_res = space.appexec([fn, w_3], """(f, x):
return f(x)
""")
assert space.eq_w(w_res, w_4)
def test_flatcall_default_arg_method(self):
space = self.space
def f(self, a, b):
return a+b
code = PyCode._from_code(self.space, f.func_code)
fn = Function(self.space, code, self.space.newdict(),
defs_w=[space.newint(1)])
assert fn.code.fast_natural_arity == 3|eval.Code.FLATPYCALL
def bomb(*args):
assert False, "shortcutting should have avoided this"
code.funcrun = bomb
code.funcrun_obj = bomb
w_3 = space.newint(3)
w_res = space.appexec([fn, w_3], """(f, x):
class A(object):
m = f
y = A().m(x)
b = A().m
z = b(x)
return y+10*z
""")
assert space.eq_w(w_res, space.wrap(44))
class TestFunction:
def test_func_defaults(self):
from pypy.interpreter import gateway
def g(w_a=None):
pass
app_g = gateway.interp2app_temp(g)
space = self.space
w_g = space.wrap(app_g)
w_defs = space.getattr(w_g, space.wrap("func_defaults"))
assert space.is_w(w_defs, space.w_None)
|