| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7464e87 commit 338cd83
37 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -62,7 +62,7 @@ Key terms | |||
| 62 | 62 | locally. | |
| 63 | 63 | ||
| 64 | 64 | .. _setuptools: https://setuptools.readthedocs.io/en/latest/ | |
| 65 | - .. _wheel: https://wheel.readthedocs.org | ||
| 65 | + .. _wheel: https://wheel.readthedocs.io/ | ||
| 66 | 66 | ||
| 67 | 67 | Open source licensing and collaboration | |
| 68 | 68 | ======================================= | |
@@ -111,7 +111,7 @@ by invoking the ``pip`` module at the command line:: | |||
| 111 | 111 | The Python Packaging User Guide includes more details on the `currently | |
| 112 | 112 | recommended tools`_. | |
| 113 | 113 | ||
| 114 | - .. _currently recommended tools: https://packaging.python.org/en/latest/current/#packaging-tool-recommendations | ||
| 114 | + .. _currently recommended tools: https://packaging.python.org/guides/tool-recommendations/#packaging-tool-recommendations | ||
| 115 | 115 | ||
| 116 | 116 | Reading the guide | |
| 117 | 117 | ================= | |
@@ -124,11 +124,11 @@ involved in creating a project: | |||
| 124 | 124 | * `Uploading the project to the Python Packaging Index`_ | |
| 125 | 125 | ||
| 126 | 126 | .. _Project structure: \ | |
| 127 | - https://packaging.python.org/en/latest/distributing/ | ||
| 127 | + https://packaging.python.org/tutorials/distributing-packages/ | ||
| 128 | 128 | .. _Building and packaging the project: \ | |
| 129 | - https://packaging.python.org/en/latest/distributing/#packaging-your-project | ||
| 129 | + https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project | ||
| 130 | 130 | .. _Uploading the project to the Python Packaging Index: \ | |
| 131 | - https://packaging.python.org/en/latest/distributing/#uploading-your-project-to-pypi | ||
| 131 | + https://packaging.python.org/tutorials/distributing-packages/#uploading-your-project-to-pypi | ||
| 132 | 132 | ||
| 133 | 133 | ||
| 134 | 134 | How do I...? | |
@@ -160,7 +160,7 @@ Python Packaging User Guide for more information and recommendations. | |||
| 160 | 160 | .. seealso:: | |
| 161 | 161 | ||
| 162 | 162 | `Python Packaging User Guide: Binary Extensions | |
| 163 | - <https://packaging.python.org/en/latest/extensions>`__ | ||
| 163 | + <https://packaging.python.org/guides/packaging-binary-extensions/>`__ | ||
| 164 | 164 | ||
| 165 | 165 | .. other topics: | |
| 166 | 166 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,7 +22,7 @@ very little overhead for build/release/install mechanics. | |||
| 22 | 22 | This guide only covers the basic tools for building and distributing | |
| 23 | 23 | extensions that are provided as part of this version of Python. Third party | |
| 24 | 24 | tools offer easier to use and more secure alternatives. Refer to the `quick | |
| 25 | - recommendations section <https://packaging.python.org/en/latest/current/>`__ | ||
| 25 | + recommendations section <https://packaging.python.org/guides/tool-recommendations/>`__ | ||
| 26 | 26 | in the Python Packaging User Guide for more information. | |
| 27 | 27 | ||
| 28 | 28 | .. toctree:: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -625,7 +625,7 @@ Notes: | |||
| 625 | 625 | ||
| 626 | 626 | (7) | |
| 627 | 627 | The valid classifiers are listed on | |
| 628 | - `PyPI <http://pypi.python.org/pypi?:action=list_classifiers>`_. | ||
| 628 | + `PyPI <https://pypi.python.org/pypi?:action=list_classifiers>`_. | ||
| 629 | 629 | ||
| 630 | 630 | (8) | |
| 631 | 631 | To preserve backward compatibility, this field also accepts a string. If | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,8 @@ your system setup; details are given in later chapters. | |||
| 27 | 27 | avoid writing C extensions and preserve portability to other implementations. | |
| 28 | 28 | For example, if your use case is calling C library functions or system calls, | |
| 29 | 29 | you should consider using the :mod:`ctypes` module or the `cffi | |
| 30 | - <https://cffi.readthedocs.org>`_ library rather than writing custom C code. | ||
| 30 | + <https://cffi.readthedocs.io/>`_ library rather than writing | ||
| 31 | + custom C code. | ||
| 31 | 32 | These modules let you write Python code to interface with C code and are more | |
| 32 | 33 | portable between implementations of Python than writing and compiling a C | |
| 33 | 34 | extension module. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -32,7 +32,7 @@ approaches to creating C and C++ extensions for Python. | |||
| 32 | 32 | ||
| 33 | 33 | .. seealso:: | |
| 34 | 34 | ||
| 35 | - `Python Packaging User Guide: Binary Extensions <https://packaging.python.org/en/latest/extensions/>`_ | ||
| 35 | + `Python Packaging User Guide: Binary Extensions <https://packaging.python.org/guides/packaging-binary-extensions/>`_ | ||
| 36 | 36 | The Python Packaging User Guide not only covers several available | |
| 37 | 37 | tools that simplify the creation of binary extensions, but also | |
| 38 | 38 | discusses the various reasons why creating an extension module may be | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -272,7 +272,7 @@ The Python project's infrastructure is located all over the world. | |||
| 272 | 272 | `www.python.org <https://www.python.org>`_ is graciously hosted by `Rackspace | |
| 273 | 273 | <https://www.rackspace.com>`_, with CDN caching provided by `Fastly | |
| 274 | 274 | <https://www.fastly.com>`_. `Upfront Systems | |
| 275 | - <http://www.upfrontsystems.co.za/>`_ hosts `bugs.python.org | ||
| 275 | + <http://www.upfrontsoftware.co.za>`_ hosts `bugs.python.org | ||
| 276 | 276 | <https://bugs.python.org>`_. Many other Python services like `the Wiki | |
| 277 | 277 | <https://wiki.python.org>`_ are hosted by `Oregon State | |
| 278 | 278 | University Open Source Lab <https://osuosl.org>`_. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -314,7 +314,7 @@ favourite beverage and carry on. | |||
| 314 | 314 | If your logging needs are simple, then use the above examples to incorporate | |
| 315 | 315 | logging into your own scripts, and if you run into problems or don't | |
| 316 | 316 | understand something, please post a question on the comp.lang.python Usenet | |
| 317 | - group (available at https://groups.google.com/group/comp.lang.python) and you | ||
| 317 | + group (available at https://groups.google.com/forum/#!forum/comp.lang.python) and you | ||
| 318 | 318 | should receive help before too long. | |
| 319 | 319 | ||
| 320 | 320 | Still here? You can carry on reading the next few sections, which provide a | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -433,12 +433,12 @@ to make sure everything functions as expected in both versions of Python. | |||
| 433 | 433 | .. _Futurize: http://python-future.org/automatic_conversion.html | |
| 434 | 434 | .. _importlib: https://docs.python.org/3/library/importlib.html#module-importlib | |
| 435 | 435 | .. _importlib2: https://pypi.python.org/pypi/importlib2 | |
| 436 | - .. _Modernize: https://python-modernize.readthedocs.org/en/latest/ | ||
| 436 | + .. _Modernize: https://python-modernize.readthedocs.io/ | ||
| 437 | 437 | .. _mypy: http://mypy-lang.org/ | |
| 438 | 438 | .. _Porting to Python 3: http://python3porting.com/ | |
| 439 | 439 | .. _Pylint: https://pypi.python.org/pypi/pylint | |
| 440 | 440 | ||
| 441 | - .. _Python 3 Q & A: https://ncoghlan-devs-python-notes.readthedocs.org/en/latest/python3/questions_and_answers.html | ||
| 441 | + .. _Python 3 Q & A: https://ncoghlan-devs-python-notes.readthedocs.io/en/latest/python3/questions_and_answers.html | ||
| 442 | 442 | ||
| 443 | 443 | .. _pytype: https://github.com/google/pytype | |
| 444 | 444 | .. _python-future: http://python-future.org/ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -214,7 +214,7 @@ difficult reading. `A chronology <http://www.unicode.org/history/>`_ of the | |||
| 214 | 214 | origin and development of Unicode is also available on the site. | |
| 215 | 215 | ||
| 216 | 216 | To help understand the standard, Jukka Korpela has written `an introductory | |
| 217 | - guide <https://www.cs.tut.fi/~jkorpela/unicode/guide.html>`_ to reading the | ||
| 217 | + guide <http://jkorpela.fi/unicode/guide.html>`_ to reading the | ||
| 218 | 218 | Unicode character tables. | |
| 219 | 219 | ||
| 220 | 220 | Another `good introductory article <https://www.joelonsoftware.com/2003/10/08/the-absolute-minimum-every-software-developer-absolutely-positively-must-know-about-unicode-and-character-sets-no-excuses/>`_ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -403,7 +403,7 @@ fetched, particularly the headers sent by the server. It is currently an | |||
| 403 | 403 | :class:`http.client.HTTPMessage` instance. | |
| 404 | 404 | ||
| 405 | 405 | Typical headers include 'Content-length', 'Content-type', and so on. See the | |
| 406 | - `Quick Reference to HTTP Headers <https://www.cs.tut.fi/~jkorpela/http.html>`_ | ||
| 406 | + `Quick Reference to HTTP Headers <http://jkorpela.fi/http.html>`_ | ||
| 407 | 407 | for a useful listing of HTTP headers with brief explanations of their meaning | |
| 408 | 408 | and use. | |
| 409 | 409 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments