(self, node)
| 720 | |
| 721 | # for Python 3.7 and earlier |
| 722 | def visit_Num(self, node): |
| 723 | if isinstance(node.n, int): |
| 724 | return ast.Call(func=ast.Name(id='Integer', ctx=ast.Load()), |
| 725 | args=[node], keywords=[]) |
| 726 | return node |
| 727 | |
| 728 | # For Python 3.8+ |
| 729 | def visit_Constant(self, node): |