-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
bpo-40896: add missing links to source-code to library documentation #20843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,10 @@ | |
|
|
||
| .. sectionauthor:: Benjamin Peterson <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/lib2to3` | ||
|
|
||
| -------------- | ||
|
|
||
| 2to3 is a Python program that reads Python 2.x source code and applies a series | ||
| of *fixers* to transform it into valid Python 3.x code. The standard library | ||
| contains a rich set of fixers that will handle almost all code. 2to3 supporting | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,8 @@ | |
|
|
||
| .. moduleauthor:: Thomas Heller <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/ctypes` | ||
|
|
||
| -------------- | ||
|
|
||
| :mod:`ctypes` is a foreign function library for Python. It provides C compatible | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,8 @@ | |
| .. moduleauthor:: Eric S. Raymond <[email protected]> | ||
| .. sectionauthor:: Eric S. Raymond <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/curses/ascii.py` | ||
|
|
||
| -------------- | ||
|
|
||
| The :mod:`curses.ascii` module supplies name constants for ASCII characters and | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,8 @@ | |
|
|
||
| .. sectionauthor:: A.M. Kuchling <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/curses/panel.py` | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one is not really useful.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @remilapeyre Why, Has it been deprecated? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not, it's just that the file is a wrapper for the C module: https://github.com/python/cpython/blob/master/Lib/curses/panel.py |
||
|
|
||
| -------------- | ||
|
|
||
| Panels are windows with the added feature of depth, so they can be stacked on | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,8 @@ | |
| .. sectionauthor:: Moshe Zadka <[email protected]> | ||
| .. sectionauthor:: Eric Raymond <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/curses` | ||
|
|
||
| -------------- | ||
|
|
||
| The :mod:`curses` module provides an interface to the curses library, the | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,8 @@ | |
|
|
||
| .. sectionauthor:: Fred L. Drake, Jr. <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/distutils` | ||
|
|
||
| -------------- | ||
|
|
||
| The :mod:`distutils` package provides support for building and installing | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,8 @@ | |
| .. deprecated:: 3.4 | ||
| Due to lack of usage, the formatter module has been deprecated. | ||
|
|
||
| **Source code:** :source:`Lib/formatter.py` | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I an not sure that adding this for a deprecated module is a good idea. |
||
|
|
||
| -------------- | ||
|
|
||
| This module supports two interface definitions, each with multiple | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,8 @@ | |
| .. moduleauthor:: Phillip J. Eby <[email protected]> | ||
| .. sectionauthor:: Phillip J. Eby <[email protected]> | ||
|
|
||
| **Source code:** :source:`Lib/wsgiref` | ||
|
|
||
| -------------- | ||
|
|
||
| The Web Server Gateway Interface (WSGI) is a standard interface between web | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Add links to Library source code to Documentation. Enhanced by Edison Abahurire. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Documentation only changes don't need a blurb.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But they can and for non-trivial changes ofter do. 'Documentation' is a section in the blurb template and in the changelog.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think in this case it could be reasonable either way, but I wouldn't consider it to be strictly required for small documentation enhancements. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also deprecated.