(pos=False)
| 1037 | defaults = {} |
| 1038 | |
| 1039 | def get_token(pos=False): |
| 1040 | try: |
| 1041 | tok_type, tok_string, (srow, scol), (erow, ecol), line = next( |
| 1042 | tokens) |
| 1043 | except StopIteration: |
| 1044 | return tokenize.ENDMARKER, '' |
| 1045 | if pos: |
| 1046 | return tok_type, tok_string, (srow, scol), (erow, ecol) |
| 1047 | else: |
| 1048 | return tok_type, tok_string |
| 1049 | while 1: |
| 1050 | var_arg_type = None |
| 1051 | tok_type, tok_string = get_token() |
no test coverage detected