[Python-checkins] devguide: Make some tweaks thanks to the pythonsprints.com dev docs.
brett.cannon
python-checkins at python.org
Thu Jan 20 22:46:06 CET 2011
brett.cannon pushed d048670d09e7 to devguide:
http://hg.python.org/devguide/rev/d048670d09e7
changeset: 171:d048670d09e7
tag: tip
user: Brett Cannon <brett at python.org>
date: Thu Jan 20 13:46:00 2011 -0800
summary:
Make some tweaks thanks to the pythonsprints.com dev docs.
files:
helptriage.rst
index.rst
setup.rst
diff --git a/helptriage.rst b/helptriage.rst
--- a/helptriage.rst
+++ b/helptriage.rst
@@ -53,10 +53,12 @@
quickly look for subtle issues that only people with extensive experience
working on Python's code base will notice.
-There is a complete list of `open issues with patches`_, although to make sure
+There is a complete list of `open issues with patches`_ as well as a list of
+`issues needing a review`_, although make sure
that someone has not already done the checklist above as it is possible the
issue is still open for reasons other than needing help being triaged.
.. _issue tracker: http://bugs.python.org
+.. _issues needing a review: http://bugs.python.org/issue?status=1&@sort=-activity&@columns=id,activity,title,creator,status&@dispname=Show%20Needing%20Review&@startwith=0&@group=priority&@filter=&keywords=8&@action=search&@pagesize=50
.. _open issues with patches: http://bugs.python.org/issue?status=1&@sort=-activity&@columns=id,activity,title,creator,status&@dispname=Issues%20with%20patch&@startwith=0&@group=priority&@filter=&keywords=2&@action=search&@pagesize=50
diff --git a/index.rst b/index.rst
--- a/index.rst
+++ b/index.rst
@@ -118,10 +118,6 @@
Talk to Collin et. al. about an unladen task; emailed 2011-01-17
.. todo::
- Go through http://docs.pythonsprints.com/core_development/ to make sure
- nothing is missing here
-
-.. todo::
See if there is anything useful in http://wiki.python.org/moin/DebuggingWithGdb
.. todo::
diff --git a/setup.rst b/setup.rst
--- a/setup.rst
+++ b/setup.rst
@@ -69,7 +69,8 @@
Build dependencies
''''''''''''''''''
-The core CPython interpreter only needs a C compiler to build itself.
+The core CPython interpreter only needs a C compiler to build itself (both
+clang and gcc_ are known to work).
However, some of the extension modules will need development headers
for additional libraries (such as the ``zlib`` library for compression).
Depending on what you intend to work on, you might need to install these
@@ -77,6 +78,10 @@
desired features.
+.. _clang: http://clang.llvm.org/
+.. _gcc: http://gcc.gnu.org/
+
+
UNIX
''''
--
Repository URL: http://hg.python.org/devguide
More information about the Python-checkins
mailing list