From ccb1699551cfc3e7306cb5bb2d2ed1c9cd7540f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 23 Feb 2019 22:06:29 +0100 Subject: [PATCH] Removed links to docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bdeceac..39aeb5a 100644 --- a/README.md +++ b/README.md @@ -1446,7 +1446,7 @@ class MyClass(metaclass=MyMetaClass): ``` -Operator [⬈](https://docs.python.org/3/library/operator.html) +Operator -------- ```python from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs, \ @@ -1467,7 +1467,7 @@ last_el = op.methodcaller('pop')() Eval ---- -### Basic [⬈](https://docs.python.org/3/library/ast.html?highlight=literal_eval#ast.literal_eval) +### Basic ```python >>> from ast import literal_eval >>> literal_eval('1 + 2') @@ -1478,7 +1478,7 @@ Eval ValueError: malformed node or string ``` -### Using Abstract Syntax Trees [⬈](https://docs.python.org/3/library/ast.html#ast.parse) +### Using Abstract Syntax Trees ```python import ast from ast import Num, BinOp, UnaryOp