From a46d706a2144381f74aec7bf87ddda474981a25b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 25 Mar 2018 15:46:36 +0200 Subject: [PATCH] Readme --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 34fc84b..86293fd 100644 --- a/README.md +++ b/README.md @@ -476,7 +476,7 @@ lock.release() Itertools --------- -#### Every function returns a generator and can accept any collection. If you want to print an output of generator, as in examples, you need to pass it to `list()` function. +#### Every function returns a generator and can accept any collection. If you want to print an output of generator, as in examples, you need to pass it to the list() function. ```python from itertools import * @@ -615,7 +615,9 @@ class MyMetaClass(type): ``` ### Metaclass Attr -#### When class is created it checks if it has metaclass defined. If not, it recursively checks if any of his parents has it defined, and eventually comes to type: +#### When class is created it checks if it has metaclass defined. If not, it +#### recursively checks if any of his parents has it defined, and eventually +#### comes to type: ```python class BlaBla: __metaclass__ = Bla