Mercurial > python-compiler.rs
view tests/test_parse_files/test_functiondef.py @ 58:a0b23123901b
Replace "".to_string() and format!("") by String::new().
author | Bastien Orivel <eijebong@bananium.fr> |
---|---|
date | Sun, 12 Jun 2016 18:52:43 +0200 |
parents | c3cc16b933d2 |
children | 5df52b40fe54 |
line wrap: on
line source
def func0(): pass def func1(a, b: str): pass def func2(a, *, b: composite.type, c=2, d: int=3): pass def func3(a, c=1, *args, b=2, **kwargs): pass