From 4f0ee6998c3c3d27b316bb9356896a18c8e51d63 Mon Sep 17 00:00:00 2001 From: fa064972 Date: Sun, 16 Jun 2024 22:26:05 +0530 Subject: [PATCH 1/7] updated the broken links of opencv and PIL readthedocs site --- docs/scenarios/imaging.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scenarios/imaging.rst b/docs/scenarios/imaging.rst index 7b0e71935..8fe7e08fe 100644 --- a/docs/scenarios/imaging.rst +++ b/docs/scenarios/imaging.rst @@ -62,7 +62,7 @@ Example exif_data There are more examples of the Pillow library in the -`Pillow tutorial `_. +`Pillow tutorial `_. *************************** @@ -109,4 +109,4 @@ Example There are more Python-implemented examples of OpenCV in this `collection of tutorials -`_. +`_. From 64ac5ceb88f20537c8c5c26cbcbb15f1ca56623f Mon Sep 17 00:00:00 2001 From: d9pouces Date: Thu, 20 Jun 2024 22:34:50 +0200 Subject: [PATCH 2/7] fix: remove Shinken from the admin part, because Shinken is dead (last version 8 years ago) --- docs/scenarios/admin.rst | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docs/scenarios/admin.rst b/docs/scenarios/admin.rst index 73df990d7..f6433c213 100644 --- a/docs/scenarios/admin.rst +++ b/docs/scenarios/admin.rst @@ -395,17 +395,3 @@ up. Buildout is primarily used to download and set up dependencies in `Python eggs `_ format of the software being developed or deployed. Recipes for build tasks in any environment can be created, and many are already available. - - -******* -Shinken -******* - -`Shinken `_ is a modern, Nagios compatible -monitoring framework written in Python. Its main goal is to give users a flexible -architecture for their monitoring system that is designed to scale to large -environments. - -Shinken is backwards-compatible with the Nagios configuration standard and -plugins. It works on any operating system and architecture that supports Python, -which includes Windows, Linux, and FreeBSD. From 63f96a4e4521fe52a313792709fc68fcc4104ca6 Mon Sep 17 00:00:00 2001 From: Marty McEnroe Date: Wed, 13 May 2026 19:53:06 -0500 Subject: [PATCH 3/7] fix broken docs link numpy.scipy.org is dead, numpy moved to numpy.org --- docs/scenarios/scientific.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scenarios/scientific.rst b/docs/scenarios/scientific.rst index bb0547323..9a92fc9a0 100644 --- a/docs/scenarios/scientific.rst +++ b/docs/scenarios/scientific.rst @@ -47,7 +47,7 @@ Libraries NumPy ----- -`NumPy `_ is a low level library written in C (and +`NumPy `_ is a low level library written in C (and Fortran) for high level mathematical functions. NumPy cleverly overcomes the problem of running slower algorithms on Python by using multidimensional arrays and functions that operate on arrays. Any algorithm can then be expressed as a From 7180936603c03440681b16b1dd61ed0011d18f42 Mon Sep 17 00:00:00 2001 From: Marty McEnroe Date: Wed, 13 May 2026 19:53:07 -0500 Subject: [PATCH 4/7] fix broken docs link numpy.scipy.org is dead, numpy moved to numpy.org --- docs/intro/duction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/duction.rst b/docs/intro/duction.rst index 16baebc0d..f0dc95278 100644 --- a/docs/intro/duction.rst +++ b/docs/intro/duction.rst @@ -33,7 +33,7 @@ include: Perl's `CPAN `_. There is a thriving community of very powerful Python frameworks and tools like the `Django `_ web framework and the - `NumPy `_ set of math routines. + `NumPy `_ set of math routines. * **integration with other systems** From aab9731ccff58fdff61d83963daebc5ac4b0a789 Mon Sep 17 00:00:00 2001 From: Dhruva Kumar Date: Mon, 8 Jun 2026 19:07:21 +0530 Subject: [PATCH 5/7] docs: update Creative Commons license link to HTTPS --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d732ac29f..9b24d3671 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,10 +48,10 @@ # General information about the project. current_year = datetime.datetime.now().year -project = u'pythonguide' +project = 'pythonguide' copyright = (u'2011-{} Kenneth Reitz' ' & Real Python.' - ' CC BY-NC-SA 3.0').format(current_year) + ' CC BY-NC-SA 3.0').format(current_year) # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -203,7 +203,7 @@ # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'pythonguide.tex', u'Python Guide Documentation', - u'Kenneth Reitz', 'manual'), + [u'Kenneth Reitz'], 1) ] # The name of an image file (relative to this directory) to place at the top of From 2e6482a659f07e43911a8e2e70fffeaa804391c1 Mon Sep 17 00:00:00 2001 From: Dhruva Kumar Date: Tue, 9 Jun 2026 19:49:30 +0530 Subject: [PATCH 6/7] docs: improve grammar in reading great code TODO --- docs/writing/reading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/reading.rst b/docs/writing/reading.rst index 1e03a4def..465587074 100644 --- a/docs/writing/reading.rst +++ b/docs/writing/reading.rst @@ -49,4 +49,4 @@ reading. Each one of these projects is a paragon of Python coding. .. todo:: Include code examples of exemplary code from each of the projects listed. Explain why it is excellent code. Use complex examples. -.. todo:: Explain techniques to rapidly identify data structures and algorithms and determine what the code is doing. +.. todo:: Explain techniques for rapidly identifying data structures and algorithms and determining what the code is doing. From 30c2c97a6a0db03249ae983fc345990f516fea65 Mon Sep 17 00:00:00 2001 From: Dhruva Kumar Date: Mon, 27 Jul 2026 11:03:26 +0530 Subject: [PATCH 7/7] Updated the Creative Commons contact URL from HTTP to HTTPS in the license text. --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index a632f3e73..a50eacf98 100644 --- a/LICENSE +++ b/LICENSE @@ -357,4 +357,4 @@ Creative Commons Notice available upon request from time to time. For the avoidance of doubt, this trademark restriction does not form part of this License. - Creative Commons may be contacted at http://creativecommons.org/. + Creative Commons may be contacted at https://creativecommons.org/.