├── 404.html ├── CNAME ├── README.md ├── dis_template.py ├── gen_page.py ├── images ├── bkg.png ├── blacktocat.png ├── python.org.16.ico └── python.org.ico ├── index.html ├── javascripts ├── highlight.pack.js └── main.js ├── stylesheets ├── bootstrap.css ├── compress.css ├── gments │ ├── arta.css │ ├── ascetic.css │ ├── brown_paper.css │ ├── brown_papersq.png │ ├── dark.css │ ├── default.css │ ├── far.css │ ├── github.css │ ├── googlecode.css │ ├── idea.css │ ├── ir_black.css │ ├── magula.css │ ├── monokai.css │ ├── pojoaque.css │ ├── pojoaque.jpg │ ├── rainbow.css │ ├── school_book.css │ ├── school_book.png │ ├── solarized_dark.css │ ├── solarized_light.css │ ├── sunburst.css │ ├── tomorrow-night-blue.css │ ├── tomorrow-night-bright.css │ ├── tomorrow-night-eighties.css │ ├── tomorrow-night.css │ ├── tomorrow.css │ ├── vs.css │ ├── xcode.css │ └── zenburn.css └── stylesheet.css ├── template.html └── tests ├── test01 ├── t1.py └── t2.py ├── test02 ├── t1.py └── t2.py ├── test03 ├── t1.py └── t2.py ├── test04 ├── t1.py └── t2.py ├── test05 ├── t1.py ├── t2.py └── t3.py ├── test06 ├── t1.py ├── t2.py └── t3.py ├── test07 ├── t1.py ├── t2.py ├── t3.py └── t4.py ├── test08 ├── t1.py ├── t2.py ├── t3.py └── t4.py ├── test09 ├── t1.py └── t2.py ├── test10 ├── t1.py └── t2.py ├── test11 ├── t1.py ├── t2.py └── t3.py ├── test12 ├── t1.py └── t2.py ├── test13 ├── t1.py └── t2.py ├── test14 ├── t1.py └── t2.py ├── test15 ├── t1.py ├── t2.py └── t3.py ├── test16 ├── t1.py └── t2.py ├── test17 ├── t1.py ├── t2.py └── t3.py ├── test18 ├── t1.py ├── t2.py └── t3.py ├── test19 ├── t1.py ├── t2.py ├── t3.py ├── t4.py ├── t5.py └── t6.py ├── test20 ├── t1.py ├── t2.py └── t3.py ├── test21 ├── t1.py ├── t2.py └── t3.py ├── test22 ├── t1.py └── t2.py ├── test23 ├── t1.py ├── t2.py └── t3.py ├── test24 ├── t1.py ├── t2.py └── t3.py ├── test25 ├── t1.py ├── t2.py ├── t3.py └── t4.py ├── test26 ├── t1.py └── t2.py ├── test27 ├── t1.py └── t2.py ├── test28 ├── t1.py ├── t2.py └── t3.py ├── test29 ├── t1.py ├── t2.py ├── t3.py └── t4.py ├── test30 ├── t1.py ├── t2.py └── t3.py ├── test31 ├── t1.py └── t2.py ├── test32 ├── t1.py └── t2.py ├── test33 ├── t1.py ├── t2.py └── t3.py ├── test34 ├── t1.py └── t2.py ├── test35 ├── t1.py ├── t2.py └── t3.py ├── test36 ├── t1.py ├── t2.py └── t3.py ├── test37 ├── t1.py ├── t2.py └── t3.py └── test38 ├── t1.py ├── t2.py ├── t3.py └── t4.py /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | pythonfasterway.cf 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/README.md -------------------------------------------------------------------------------- /dis_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/dis_template.py -------------------------------------------------------------------------------- /gen_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/gen_page.py -------------------------------------------------------------------------------- /images/bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/images/bkg.png -------------------------------------------------------------------------------- /images/blacktocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/images/blacktocat.png -------------------------------------------------------------------------------- /images/python.org.16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/images/python.org.16.ico -------------------------------------------------------------------------------- /images/python.org.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/images/python.org.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/index.html -------------------------------------------------------------------------------- /javascripts/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/javascripts/highlight.pack.js -------------------------------------------------------------------------------- /javascripts/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /stylesheets/compress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/compress.css -------------------------------------------------------------------------------- /stylesheets/gments/arta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/arta.css -------------------------------------------------------------------------------- /stylesheets/gments/ascetic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/ascetic.css -------------------------------------------------------------------------------- /stylesheets/gments/brown_paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/brown_paper.css -------------------------------------------------------------------------------- /stylesheets/gments/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/brown_papersq.png -------------------------------------------------------------------------------- /stylesheets/gments/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/dark.css -------------------------------------------------------------------------------- /stylesheets/gments/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/default.css -------------------------------------------------------------------------------- /stylesheets/gments/far.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/far.css -------------------------------------------------------------------------------- /stylesheets/gments/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/github.css -------------------------------------------------------------------------------- /stylesheets/gments/googlecode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/googlecode.css -------------------------------------------------------------------------------- /stylesheets/gments/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/idea.css -------------------------------------------------------------------------------- /stylesheets/gments/ir_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/ir_black.css -------------------------------------------------------------------------------- /stylesheets/gments/magula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/magula.css -------------------------------------------------------------------------------- /stylesheets/gments/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/monokai.css -------------------------------------------------------------------------------- /stylesheets/gments/pojoaque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/pojoaque.css -------------------------------------------------------------------------------- /stylesheets/gments/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/pojoaque.jpg -------------------------------------------------------------------------------- /stylesheets/gments/rainbow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/rainbow.css -------------------------------------------------------------------------------- /stylesheets/gments/school_book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/school_book.css -------------------------------------------------------------------------------- /stylesheets/gments/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/school_book.png -------------------------------------------------------------------------------- /stylesheets/gments/solarized_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/solarized_dark.css -------------------------------------------------------------------------------- /stylesheets/gments/solarized_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/solarized_light.css -------------------------------------------------------------------------------- /stylesheets/gments/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/sunburst.css -------------------------------------------------------------------------------- /stylesheets/gments/tomorrow-night-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/tomorrow-night-blue.css -------------------------------------------------------------------------------- /stylesheets/gments/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/tomorrow-night-bright.css -------------------------------------------------------------------------------- /stylesheets/gments/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /stylesheets/gments/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/tomorrow-night.css -------------------------------------------------------------------------------- /stylesheets/gments/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/tomorrow.css -------------------------------------------------------------------------------- /stylesheets/gments/vs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/vs.css -------------------------------------------------------------------------------- /stylesheets/gments/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/xcode.css -------------------------------------------------------------------------------- /stylesheets/gments/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/gments/zenburn.css -------------------------------------------------------------------------------- /stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/template.html -------------------------------------------------------------------------------- /tests/test01/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test01/t1.py -------------------------------------------------------------------------------- /tests/test01/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test01/t2.py -------------------------------------------------------------------------------- /tests/test02/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test02/t1.py -------------------------------------------------------------------------------- /tests/test02/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test02/t2.py -------------------------------------------------------------------------------- /tests/test03/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test03/t1.py -------------------------------------------------------------------------------- /tests/test03/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test03/t2.py -------------------------------------------------------------------------------- /tests/test04/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test04/t1.py -------------------------------------------------------------------------------- /tests/test04/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test04/t2.py -------------------------------------------------------------------------------- /tests/test05/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test05/t1.py -------------------------------------------------------------------------------- /tests/test05/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test05/t2.py -------------------------------------------------------------------------------- /tests/test05/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test05/t3.py -------------------------------------------------------------------------------- /tests/test06/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test06/t1.py -------------------------------------------------------------------------------- /tests/test06/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test06/t2.py -------------------------------------------------------------------------------- /tests/test06/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test06/t3.py -------------------------------------------------------------------------------- /tests/test07/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test07/t1.py -------------------------------------------------------------------------------- /tests/test07/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test07/t2.py -------------------------------------------------------------------------------- /tests/test07/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test07/t3.py -------------------------------------------------------------------------------- /tests/test07/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test07/t4.py -------------------------------------------------------------------------------- /tests/test08/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test08/t1.py -------------------------------------------------------------------------------- /tests/test08/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test08/t2.py -------------------------------------------------------------------------------- /tests/test08/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test08/t3.py -------------------------------------------------------------------------------- /tests/test08/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test08/t4.py -------------------------------------------------------------------------------- /tests/test09/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test09/t1.py -------------------------------------------------------------------------------- /tests/test09/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test09/t2.py -------------------------------------------------------------------------------- /tests/test10/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test10/t1.py -------------------------------------------------------------------------------- /tests/test10/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test10/t2.py -------------------------------------------------------------------------------- /tests/test11/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test11/t1.py -------------------------------------------------------------------------------- /tests/test11/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test11/t2.py -------------------------------------------------------------------------------- /tests/test11/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test11/t3.py -------------------------------------------------------------------------------- /tests/test12/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test12/t1.py -------------------------------------------------------------------------------- /tests/test12/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test12/t2.py -------------------------------------------------------------------------------- /tests/test13/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test13/t1.py -------------------------------------------------------------------------------- /tests/test13/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test13/t2.py -------------------------------------------------------------------------------- /tests/test14/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test14/t1.py -------------------------------------------------------------------------------- /tests/test14/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test14/t2.py -------------------------------------------------------------------------------- /tests/test15/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test15/t1.py -------------------------------------------------------------------------------- /tests/test15/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test15/t2.py -------------------------------------------------------------------------------- /tests/test15/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test15/t3.py -------------------------------------------------------------------------------- /tests/test16/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test16/t1.py -------------------------------------------------------------------------------- /tests/test16/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test16/t2.py -------------------------------------------------------------------------------- /tests/test17/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test17/t1.py -------------------------------------------------------------------------------- /tests/test17/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test17/t2.py -------------------------------------------------------------------------------- /tests/test17/t3.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return {str(i): i*2 for i in range(100)} 3 | -------------------------------------------------------------------------------- /tests/test18/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test18/t1.py -------------------------------------------------------------------------------- /tests/test18/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test18/t2.py -------------------------------------------------------------------------------- /tests/test18/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test18/t3.py -------------------------------------------------------------------------------- /tests/test19/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t1.py -------------------------------------------------------------------------------- /tests/test19/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t2.py -------------------------------------------------------------------------------- /tests/test19/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t3.py -------------------------------------------------------------------------------- /tests/test19/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t4.py -------------------------------------------------------------------------------- /tests/test19/t5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t5.py -------------------------------------------------------------------------------- /tests/test19/t6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test19/t6.py -------------------------------------------------------------------------------- /tests/test20/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test20/t1.py -------------------------------------------------------------------------------- /tests/test20/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test20/t2.py -------------------------------------------------------------------------------- /tests/test20/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test20/t3.py -------------------------------------------------------------------------------- /tests/test21/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test21/t1.py -------------------------------------------------------------------------------- /tests/test21/t2.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return sum([p+v for p, v in enumerate([1, 2, 3, 4, 5])]) 3 | -------------------------------------------------------------------------------- /tests/test21/t3.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return sum([p+v for p, v in enumerate(xrange(1, 6))]) 3 | -------------------------------------------------------------------------------- /tests/test22/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test22/t1.py -------------------------------------------------------------------------------- /tests/test22/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test22/t2.py -------------------------------------------------------------------------------- /tests/test23/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test23/t1.py -------------------------------------------------------------------------------- /tests/test23/t2.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return ''.join(map(str, xrange(10))) 3 | -------------------------------------------------------------------------------- /tests/test23/t3.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return ''.join(map(str, range(10))) 3 | -------------------------------------------------------------------------------- /tests/test24/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test24/t1.py -------------------------------------------------------------------------------- /tests/test24/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test24/t2.py -------------------------------------------------------------------------------- /tests/test24/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test24/t3.py -------------------------------------------------------------------------------- /tests/test25/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test25/t1.py -------------------------------------------------------------------------------- /tests/test25/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test25/t2.py -------------------------------------------------------------------------------- /tests/test25/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test25/t3.py -------------------------------------------------------------------------------- /tests/test25/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test25/t4.py -------------------------------------------------------------------------------- /tests/test26/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test26/t1.py -------------------------------------------------------------------------------- /tests/test26/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test26/t2.py -------------------------------------------------------------------------------- /tests/test27/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test27/t1.py -------------------------------------------------------------------------------- /tests/test27/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test27/t2.py -------------------------------------------------------------------------------- /tests/test28/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test28/t1.py -------------------------------------------------------------------------------- /tests/test28/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test28/t2.py -------------------------------------------------------------------------------- /tests/test28/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test28/t3.py -------------------------------------------------------------------------------- /tests/test29/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test29/t1.py -------------------------------------------------------------------------------- /tests/test29/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test29/t2.py -------------------------------------------------------------------------------- /tests/test29/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test29/t3.py -------------------------------------------------------------------------------- /tests/test29/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test29/t4.py -------------------------------------------------------------------------------- /tests/test30/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test30/t1.py -------------------------------------------------------------------------------- /tests/test30/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test30/t2.py -------------------------------------------------------------------------------- /tests/test30/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test30/t3.py -------------------------------------------------------------------------------- /tests/test31/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test31/t1.py -------------------------------------------------------------------------------- /tests/test31/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test31/t2.py -------------------------------------------------------------------------------- /tests/test32/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test32/t1.py -------------------------------------------------------------------------------- /tests/test32/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test32/t2.py -------------------------------------------------------------------------------- /tests/test33/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test33/t1.py -------------------------------------------------------------------------------- /tests/test33/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test33/t2.py -------------------------------------------------------------------------------- /tests/test33/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test33/t3.py -------------------------------------------------------------------------------- /tests/test34/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test34/t1.py -------------------------------------------------------------------------------- /tests/test34/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test34/t2.py -------------------------------------------------------------------------------- /tests/test35/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test35/t1.py -------------------------------------------------------------------------------- /tests/test35/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test35/t2.py -------------------------------------------------------------------------------- /tests/test35/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test35/t3.py -------------------------------------------------------------------------------- /tests/test36/t1.py: -------------------------------------------------------------------------------- 1 | def a(): 2 | return [[0] * 5 for x in range(5)] 3 | -------------------------------------------------------------------------------- /tests/test36/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test36/t2.py -------------------------------------------------------------------------------- /tests/test36/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test36/t3.py -------------------------------------------------------------------------------- /tests/test37/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test37/t1.py -------------------------------------------------------------------------------- /tests/test37/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test37/t2.py -------------------------------------------------------------------------------- /tests/test37/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test37/t3.py -------------------------------------------------------------------------------- /tests/test38/t1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test38/t1.py -------------------------------------------------------------------------------- /tests/test38/t2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test38/t2.py -------------------------------------------------------------------------------- /tests/test38/t3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test38/t3.py -------------------------------------------------------------------------------- /tests/test38/t4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zokis/Python--Faster-Way/HEAD/tests/test38/t4.py --------------------------------------------------------------------------------