diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-14 02:14:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-14 02:14:42 (GMT) |
commit | 17f690f96b328b810c2df9a8840bdd3171b5ee50 (patch) | |
tree | ad61a9cffe4df39d71d37e01124915c3b46b8902 /Doc/tut | |
parent | 6e5e1d924cb58be4b1922f0087e3528517f161c1 (diff) | |
download | cpython-17f690f96b328b810c2df9a8840bdd3171b5ee50.zip cpython-17f690f96b328b810c2df9a8840bdd3171b5ee50.tar.gz cpython-17f690f96b328b810c2df9a8840bdd3171b5ee50.tar.bz2 |
Minor changes to match the style guide.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 8d75ff6..a3a01a4 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -33,7 +33,7 @@ on most platforms. The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the -Python web site, \url{http://www.python.org}, and can be freely +Python Web site, \url{http://www.python.org/}, and can be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation. @@ -105,7 +105,7 @@ reused in other Python programs. It comes with a large collection of standard modules that you can use as the basis of your programs --- or as examples to start learning to program in Python. There are also built-in modules that provide things like file I/O, system calls, -sockets, and even interfaces to GUI toolkits like Tk. +sockets, and even interfaces to graphical user interface toolkits like Tk. Python is an interpreted language, which can save you considerable time during program development because no compilation and linking is @@ -745,7 +745,7 @@ The built-in function \function{len()} returns the length of a string: Starting with Python 2.0 a new data type for storing text data is available to the programmer: the Unicode object. It can be used to -store and manipulate Unicode data (see \url{http://www.unicode.org}) +store and manipulate Unicode data (see \url{http://www.unicode.org/}) and integrates well with the existing string objects providing auto-conversions where necessary. @@ -3936,7 +3936,7 @@ you an idea of what's available. The major Python Web site is \url{http://www.python.org/}; it contains code, documentation, and pointers to Python-related pages around the -Web. This web site is mirrored in various places around the +Web. This Web site is mirrored in various places around the world, such as Europe, Japan, and Australia; a mirror may be faster than the main site, depending on your geographical location. A more informal site is \url{http://starship.python.net/}, which contains a |