+2528
-1775
lines changed Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ taken on the bug.
53
53
Article which goes into some detail about how to create a useful bug report.
54
54
This describes what kind of information is useful and why it is useful.
55
55
56
-
`Bug Writing Guidelines <http://www.mozilla.org/quality/bug-writing-guidelines.html>`_
56
+
`Bug Writing Guidelines <http://developer.mozilla.org/en/docs/Bug_writing_guidelines>`_
57
57
Information about writing a good bug report. Some of this is specific to the
58
58
Mozilla project, but describes general good practices.
59
59
Original file line number Diff line number Diff line change
@@ -137,7 +137,7 @@ reference counts for other objects contained in the object if this is a compound
137
137
object type, such as a list, as well as performing any additional finalization
138
138
that's needed. There's no chance that the reference count can overflow; at
139
139
least as many bits are used to hold the reference count as there are distinct
140
-
memory locations in virtual memory (assuming ``sizeof(long) >= sizeof(char*)``).
140
+
memory locations in virtual memory (assuming ``sizeof(Py_ssize_t) >= sizeof(void*)``).
141
141
Thus, the reference count increment is a simple operation.
142
142
143
143
It is not necessary to increment an object's reference count for every local
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and
73
73
+--------------------+--------------------------------+-------------------------------------------------------------+
74
74
| *classifiers* | A list of categories for the | The list of available |
75
75
| | package | categorizations is at |
76
-
| | | http://cheeseshop.python.org/pypi?:action=list_classifiers. |
76
+
| | | http://pypi.python.org/pypi?:action=list_classifiers. |
77
77
+--------------------+--------------------------------+-------------------------------------------------------------+
78
78
| *distclass* | the :class:`Distribution` | A subclass of |
79
79
| | class to use | :class:`distutils.core.Distribution` |
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ Distutils Cookbook.
11
11
12
12
.. seealso::
13
13
14
-
`Distutils Cookbook <http://www.python.org/cgi-bin/moinmoin/DistutilsCookbook>`_
14
+
`Distutils Cookbook <http://wiki.python.org/moin/DistutilsCookbook>`_
15
15
Collection of recipes showing how to achieve more control over distutils.
16
16
17
17
Original file line number Diff line number Diff line change
@@ -578,7 +578,7 @@ Notes:
578
578
(4)
579
579
These fields should not be used if your package is to be compatible with Python
580
580
versions prior to 2.2.3 or 2.3. The list is available from the `PyPI website
581
-
<http://www.python.org/pypi>`_.
581
+
<http://pypi.python.org/pypi>`_.
582
582
583
583
'short string'
584
584
A single line of text, not more than 200 characters.
Original file line number Diff line number Diff line change
@@ -122,7 +122,8 @@ distribution:
122
122
123
123
* all files in the Distutils "build" tree (default :file:`build/`)
124
124
125
-
* all files in directories named :file:`RCS`, :file:`CVS` or :file:`.svn`
125
+
* all files in directories named :file:`RCS`, :file:`CVS`, :file:`.svn`,
126
+
:file:`.hg`, :file:`.git`, :file:`.bzr` or :file:`_darcs`
126
127
127
128
Now we have our complete list of files, which is written to the manifest for
128
129
future reference, and then used to build the source distribution archive(s).
@@ -156,8 +157,9 @@ source distribution:
156
157
previous two steps, so it's important that the ``prune`` command in the manifest
157
158
template comes after the ``recursive-include`` command
158
159
159
-
#. exclude the entire :file:`build` tree, and any :file:`RCS`, :file:`CVS` and
160
-
:file:`.svn` directories
160
+
#. exclude the entire :file:`build` tree, and any :file:`RCS`, :file:`CVS`,
161
+
:file:`.svn`, :file:`.hg`, :file:`.git`, :file:`.bzr` and :file:`_darcs`
162
+
directories
161
163
162
164
Just like in the setup script, file and directory names in the manifest template
163
165
should always be slash-separated; the Distutils will take care of converting
Original file line number Diff line number Diff line change
@@ -66,5 +66,5 @@ Unix
66
66
1970s.
67
67
68
68
69
-
.. _Apple Publications Style Guide: http://developer.apple.com/documentation/UserExperience/Conceptual/APStyleGuide/AppleStyleGuide2003.pdf
69
+
.. _Apple Publications Style Guide: http://developer.apple.com/documentation/UserExperience/Conceptual/APStyleGuide/AppleStyleGuide2006.pdf
70
70
Original file line number Diff line number Diff line change
@@ -346,7 +346,7 @@ http://www.opensource.org
346
346
wasn't written commercially. This site presents arguments that show how open
347
347
source software can have considerable advantages over closed-source software.
348
348
349
-
http://sunsite.unc.edu/LDP/HOWTO/mini/Advocacy.html
349
+
http://www.faqs.org/docs/Linux-mini/Advocacy.html
350
350
The Linux Advocacy mini-HOWTO was the inspiration for this document, and is also
351
351
well worth reading for general suggestions on winning acceptance for a new
352
352
technology, such as Linux or Python. In general, you won't make much progress
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ everything, though.
52
52
No one has made a Windows port of the curses module. On a Windows platform, try
53
53
the Console module written by Fredrik Lundh. The Console module provides
54
54
cursor-addressable text output, plus full support for mouse and keyboard input,
55
-
and is available from http://effbot.org/efflib/console.
55
+
and is available from http://effbot.org/zone/console-index.htm.
56
56
57
57
58
58
The Python curses module
@@ -432,5 +432,5 @@ ncurses; feel free to add that.
432
432
If you write an interesting little program, feel free to contribute it as
433
433
another demo. We can always use more of them!
434
434
435
-
The ncurses FAQ: http://dickey.his.com/ncurses/ncurses.faq.html
435
+
The ncurses FAQ: http://invisible-island.net/ncurses/ncurses.faq.html
436
436
Original file line number Diff line number Diff line change
@@ -367,8 +367,8 @@ module. If you have Tkinter available, you may also want to look at
367
367
Python distribution. It allows you to enter REs and strings, and displays
368
368
whether the RE matches or fails. :file:`redemo.py` can be quite useful when
369
369
trying to debug a complicated RE. Phil Schwartz's `Kodos
370
-
<http://www.phil-schwartz.com/kodos.spy>`_ is also an interactive tool for
371
-
developing and testing RE patterns.
370
+
<http://kodos.sourceforge.net/>`_ is also an interactive tool for developing and
371
+
testing RE patterns.
372
372
373
373
This HOWTO uses the standard Python interpreter for its examples. First, run the
374
374
Python interpreter, import the :mod:`re` module, and compile a RE::
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4