From c2570c572f4052e8e44c157e81258715649db20b Mon Sep 17 00:00:00 2001 From: David Litvak Bruno Date: Fri, 19 Jun 2020 09:51:49 +0200 Subject: [PATCH 1/6] Adding missing parenthesis on link --- Notes/07_Advanced_Topics/00_Overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/07_Advanced_Topics/00_Overview.md b/Notes/07_Advanced_Topics/00_Overview.md index 74005f17e..dacbcfa2a 100644 --- a/Notes/07_Advanced_Topics/00_Overview.md +++ b/Notes/07_Advanced_Topics/00_Overview.md @@ -1,4 +1,4 @@ -[Contents](../Contents.md) \| [Prev (6 Generators)](../06_Generators/00_Overview.md) \| [Next (8 Testing and Debugging](../08_Testing_debugging/00_Overview.md) +[Contents](../Contents.md) \| [Prev (6 Generators)](../06_Generators/00_Overview.md) \| [Next (8 Testing and Debugging)](../08_Testing_debugging/00_Overview.md) # 7. Advanced Topics From 17547d2d7e2bd826661aa271cab4ca44d5473bbc Mon Sep 17 00:00:00 2001 From: David Litvak Bruno Date: Fri, 19 Jun 2020 09:53:24 +0200 Subject: [PATCH 2/6] Change title to match the section convention --- Notes/08_Testing_debugging/00_Overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/08_Testing_debugging/00_Overview.md b/Notes/08_Testing_debugging/00_Overview.md index 37841d93c..d1c1bbc6a 100644 --- a/Notes/08_Testing_debugging/00_Overview.md +++ b/Notes/08_Testing_debugging/00_Overview.md @@ -1,6 +1,6 @@ [Contents](../Contents.md) \| [Prev (7 Advanced Topics)](../07_Advanced_Topics/00_Overview.md) \| [Next (9 Packages)](../09_Packages/00_Overview.md) -# 8. Overview +# 8. Testing and debugging This section introduces a few basic topics related to testing, logging, and debugging. From 9e86603ccf1d3abcdf2404b429af2d757ab7e12d Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 19 Jun 2020 06:45:21 -0500 Subject: [PATCH 3/6] Fix typo --- Notes/07_Advanced_Topics/01_Variable_arguments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/07_Advanced_Topics/01_Variable_arguments.md b/Notes/07_Advanced_Topics/01_Variable_arguments.md index cc1f9efb0..6fe66ba0a 100644 --- a/Notes/07_Advanced_Topics/01_Variable_arguments.md +++ b/Notes/07_Advanced_Topics/01_Variable_arguments.md @@ -92,7 +92,7 @@ numbers = (2,3,4) f(1, *numbers) # Same as f(1,2,3,4) ``` -Dictionaries can also be expaded into keyword arguments. +Dictionaries can also be expanded into keyword arguments. ```python options = { From 12ff9195c1cb843167b6a470e958d3670939532c Mon Sep 17 00:00:00 2001 From: Tom Burrows Date: Fri, 19 Jun 2020 15:23:36 +0100 Subject: [PATCH 4/6] Fix typo (porty-add -> porty-app) --- Notes/09_Packages/01_Packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/09_Packages/01_Packages.md b/Notes/09_Packages/01_Packages.md index 24fcb35fe..96133bed8 100644 --- a/Notes/09_Packages/01_Packages.md +++ b/Notes/09_Packages/01_Packages.md @@ -243,7 +243,7 @@ package. One level up. ```python #!/usr/bin/env python3 -# porty-add/script.py +# porty-app/script.py import sys import porty From 3f0b9b0975cf80988e952684f728984259775bf0 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 19 Jun 2020 20:50:49 -0500 Subject: [PATCH 5/6] Fixed link --- Notes/Contents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/Contents.md b/Notes/Contents.md index ef7299266..57199d7c0 100644 --- a/Notes/Contents.md +++ b/Notes/Contents.md @@ -16,7 +16,7 @@ Please see the [Instructor Notes](InstructorNotes.md) if you plan on teaching the course. -[Home](..) +[Home](../README.md) From b5765a22aba161aec25248785cef171aaa48771e Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 19 Jun 2020 21:00:59 -0500 Subject: [PATCH 6/6] Added Github pages link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e9538de6e..21efa4540 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,8 @@ in-person groups since 2007. Traders, systems admins, astronomers, tinkerers, and even a few hundred rocket scientists who used Python to help land a rover on Mars--they've all taken this course. Now, I'm pleased to make it available under a Creative Commons license. Enjoy! -[GitHub Repo](https://github.com/dabeaz-course/practical-python). + +[GitHub Pages](https://dabeaz-course.github.io/practical-python) | [GitHub Repo](https://github.com/dabeaz-course/practical-python). --David Beazley ([https://dabeaz.com](https://dabeaz.com)), [@dabeaz](https://twitter.com/dabeaz)