From: A.M. K. <aku...@us...> - 2001-07-06 03:58:38
|
Update of /cvsroot/py-howto/pyhowto In directory usw-pr-cvs1:/tmp/cvs-serv13196 Modified Files: python-dev.tex Log Message: Add paragraph about working on the standard library. Add a sentence. Index: python-dev.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/python-dev.tex,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** python-dev.tex 2001/07/06 03:42:49 1.2 --- python-dev.tex 2001/07/06 03:58:35 1.3 *************** *** 93,99 **** writing extensions or making changes. \end{itemize} ! There are a few different implementations of Python. \begin{itemize} --- 93,108 ---- writing extensions or making changes. + Note, however, that it's possible to do a lot even if you don't know + C at all. Working on the portions of the standard library that are + written in Python is just as valuable for the project and is equally + educational for you. Plus, programming in Python is much more + pleasant than programming in C, because you get nicely formatted + tracebacks instead of nasty core dumps and protection faults. + + % XXX should mention somewhere that you don't need to be on Unix, either. \end{itemize} ! There are a few different implementations of Python. A quick ! overview of them follows. \begin{itemize} |