Skip to content

Commit ccb1699

Browse files
committed
Removed links to docs
1 parent 079e3e4 commit ccb1699

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1446,7 +1446,7 @@ class MyClass(metaclass=MyMetaClass):
14461446
```
14471447

14481448

1449-
Operator [](https://docs.python.org/3/library/operator.html)
1449+
Operator
14501450
--------
14511451
```python
14521452
from operator import add, sub, mul, truediv, floordiv, mod, pow, neg, abs, \
@@ -1467,7 +1467,7 @@ last_el = op.methodcaller('pop')(<list>)
14671467

14681468
Eval
14691469
----
1470-
### Basic [](https://docs.python.org/3/library/ast.html?highlight=literal_eval#ast.literal_eval)
1470+
### Basic
14711471
```python
14721472
>>> from ast import literal_eval
14731473
>>> literal_eval('1 + 2')
@@ -1478,7 +1478,7 @@ Eval
14781478
ValueError: malformed node or string
14791479
```
14801480

1481-
### Using Abstract Syntax Trees [](https://docs.python.org/3/library/ast.html#ast.parse)
1481+
### Using Abstract Syntax Trees
14821482
```python
14831483
import ast
14841484
from ast import Num, BinOp, UnaryOp

0 commit comments

Comments
 (0)