Changes between Version 1 and Version 2 of Ticket #20486, comment 6
- Timestamp:
- 05/12/16 05:08:54 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20486, comment 6
v1 v2 1 1 EDIT: wrong ticket (sorry) 2 2 3 When the test involves some randomness it is better to put a {{{#random}}} flag 4 {{{ 5 sage: give_me_a_random_stuff() # random 6 haha 7 }}} 8 9 If you forward all arguments, it might be better to have both arguments and named arguments 10 {{{ 11 def f(*args, **kwds): 12 whatever(*args, **kwds) 13 }}} 14 15 EDIT: wrong ticket (sorry) 3 ...