You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

404 lines
15 KiB

Merged revisions 59259-59274 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r59260 | lars.gustaebel | 2007-12-01 22:02:12 +0100 (Sat, 01 Dec 2007) | 5 lines Issue #1531: Read fileobj from the current offset, do not seek to the start. (will backport to 2.5) ........ r59262 | georg.brandl | 2007-12-01 23:24:47 +0100 (Sat, 01 Dec 2007) | 4 lines Document PyEval_* functions from ceval.c. Credits to Michael Sloan from GHOP. ........ r59263 | georg.brandl | 2007-12-01 23:27:56 +0100 (Sat, 01 Dec 2007) | 2 lines Add a few refcount data entries. ........ r59264 | georg.brandl | 2007-12-01 23:38:48 +0100 (Sat, 01 Dec 2007) | 4 lines Add test suite for cmd module. Written by Michael Schneider for GHOP. ........ r59265 | georg.brandl | 2007-12-01 23:42:46 +0100 (Sat, 01 Dec 2007) | 3 lines Add examples to the ElementTree documentation. Written by h4wk.cz for GHOP. ........ r59266 | georg.brandl | 2007-12-02 00:12:45 +0100 (Sun, 02 Dec 2007) | 3 lines Add "Using Python on Windows" document, by Robert Lehmann. Written for GHOP. ........ r59271 | georg.brandl | 2007-12-02 15:34:34 +0100 (Sun, 02 Dec 2007) | 3 lines Add example to mmap docs. Written for GHOP by Rafal Rawicki. ........ r59272 | georg.brandl | 2007-12-02 15:37:29 +0100 (Sun, 02 Dec 2007) | 2 lines Convert bdb.rst line endings to Unix style. ........ r59274 | georg.brandl | 2007-12-02 15:58:50 +0100 (Sun, 02 Dec 2007) | 4 lines Add more entries to the glossary. Written by Jeff Wheeler for GHOP. ........
18 years ago
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900-60931,60933-60958 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r60901 | eric.smith | 2008-02-19 14:21:56 +0100 (Tue, 19 Feb 2008) | 1 line Added PEP 3101. ........ r60907 | georg.brandl | 2008-02-20 20:12:36 +0100 (Wed, 20 Feb 2008) | 2 lines Fixes contributed by Ori Avtalion. ........ r60909 | eric.smith | 2008-02-21 00:34:22 +0100 (Thu, 21 Feb 2008) | 1 line Trim leading zeros from a floating point exponent, per C99. See issue 1600. As far as I know, this only affects Windows. Add float type 'n' to PyOS_ascii_formatd (see PEP 3101 for 'n' description). ........ r60910 | eric.smith | 2008-02-21 00:39:28 +0100 (Thu, 21 Feb 2008) | 1 line Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it. ........ r60918 | andrew.kuchling | 2008-02-21 15:23:38 +0100 (Thu, 21 Feb 2008) | 2 lines Close manifest file. This change doesn't make any difference to CPython, but is a necessary fix for Jython. ........ r60921 | guido.van.rossum | 2008-02-21 18:46:16 +0100 (Thu, 21 Feb 2008) | 2 lines Remove news about float repr() -- issue 1580 is still in limbo. ........ r60923 | guido.van.rossum | 2008-02-21 19:18:37 +0100 (Thu, 21 Feb 2008) | 5 lines Removed uses of dict.has_key() from distutils, and uses of callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib. ........ r60924 | thomas.heller | 2008-02-21 19:28:48 +0100 (Thu, 21 Feb 2008) | 4 lines configure.ac: Remove the configure check for _Bool, it is already done in the top-level Python configure script. configure, fficonfig.h.in: regenerated. ........ r60925 | thomas.heller | 2008-02-21 19:52:20 +0100 (Thu, 21 Feb 2008) | 3 lines Replace 'has_key()' with 'in'. Replace 'raise Error, stuff' with 'raise Error(stuff)'. ........ r60927 | raymond.hettinger | 2008-02-21 20:24:53 +0100 (Thu, 21 Feb 2008) | 1 line Update more instances of has_key(). ........ r60928 | guido.van.rossum | 2008-02-21 20:46:35 +0100 (Thu, 21 Feb 2008) | 3 lines Fix a few typos and layout glitches (more work is needed). Move 2.5 news to Misc/HISTORY. ........ r60936 | georg.brandl | 2008-02-21 21:33:38 +0100 (Thu, 21 Feb 2008) | 2 lines #2079: typo in userdict docs. ........ r60938 | georg.brandl | 2008-02-21 21:38:13 +0100 (Thu, 21 Feb 2008) | 2 lines Part of #2154: minimal syntax fixes in doc example snippets. ........ r60942 | raymond.hettinger | 2008-02-22 04:16:42 +0100 (Fri, 22 Feb 2008) | 1 line First draft for itertools.product(). Docs and other updates forthcoming. ........ r60955 | nick.coghlan | 2008-02-22 11:54:06 +0100 (Fri, 22 Feb 2008) | 1 line Try to make command line error messages from runpy easier to understand (and suppress traceback cruft from the implicitly invoked runpy machinery) ........ r60956 | georg.brandl | 2008-02-22 13:31:45 +0100 (Fri, 22 Feb 2008) | 2 lines A lot more typo fixes by Ori Avtalion. ........ r60957 | georg.brandl | 2008-02-22 13:56:34 +0100 (Fri, 22 Feb 2008) | 2 lines Don't reference pyshell. ........ r60958 | georg.brandl | 2008-02-22 13:57:05 +0100 (Fri, 22 Feb 2008) | 2 lines Another fix. ........
18 years ago
Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-74261 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74074 | georg.brandl | 2009-07-18 05:03:10 -0400 (Sat, 18 Jul 2009) | 1 line #6513: fix example code: warning categories are classes, not instances. ........ r74077 | georg.brandl | 2009-07-18 05:43:40 -0400 (Sat, 18 Jul 2009) | 1 line #6489: fix an ambiguity in getiterator() documentation. ........ r74111 | benjamin.peterson | 2009-07-20 09:30:10 -0400 (Mon, 20 Jul 2009) | 1 line remove docs for deprecated -p option ........ r74188 | benjamin.peterson | 2009-07-23 10:25:31 -0400 (Thu, 23 Jul 2009) | 1 line use bools ........ r74192 | georg.brandl | 2009-07-24 12:28:38 -0400 (Fri, 24 Jul 2009) | 1 line Fix arg types of et#. ........ r74193 | georg.brandl | 2009-07-24 12:46:38 -0400 (Fri, 24 Jul 2009) | 1 line Dont put "void" in signature for nullary functions. ........ r74200 | georg.brandl | 2009-07-25 09:02:15 -0400 (Sat, 25 Jul 2009) | 1 line #6571: add index entries for more operators. ........ r74252 | georg.brandl | 2009-07-29 12:06:31 -0400 (Wed, 29 Jul 2009) | 1 line #6593: fix link targets. ........ r74253 | georg.brandl | 2009-07-29 12:09:17 -0400 (Wed, 29 Jul 2009) | 1 line #6591: add reference to ioctl in fcntl module for platforms other than Windows. ........ r74258 | georg.brandl | 2009-07-29 12:57:05 -0400 (Wed, 29 Jul 2009) | 1 line Add a link to readline, and mention IPython and bpython. ........ r74259 | georg.brandl | 2009-07-29 13:07:21 -0400 (Wed, 29 Jul 2009) | 1 line Fix some markup and small factual glitches found by M. Markert. ........ r74260 | georg.brandl | 2009-07-29 13:15:20 -0400 (Wed, 29 Jul 2009) | 1 line Fix a few markup glitches. ........ r74261 | georg.brandl | 2009-07-29 13:50:25 -0400 (Wed, 29 Jul 2009) | 1 line Rewrite the section about classes a bit; mostly tidbits, and a larger update to the section about "private" variables to reflect the Pythonic consensus better. ........
17 years ago
  1. .. _tut-brieftourtwo:
  2. *********************************************
  3. Brief Tour of the Standard Library -- Part II
  4. *********************************************
  5. This second tour covers more advanced modules that support professional
  6. programming needs. These modules rarely occur in small scripts.
  7. .. _tut-output-formatting:
  8. Output Formatting
  9. =================
  10. The :mod:`reprlib` module provides a version of :func:`repr` customized for
  11. abbreviated displays of large or deeply nested containers::
  12. >>> import reprlib
  13. >>> reprlib.repr(set('supercalifragilisticexpialidocious'))
  14. "set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
  15. The :mod:`pprint` module offers more sophisticated control over printing both
  16. built-in and user defined objects in a way that is readable by the interpreter.
  17. When the result is longer than one line, the "pretty printer" adds line breaks
  18. and indentation to more clearly reveal data structure::
  19. >>> import pprint
  20. >>> t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta',
  21. ... 'yellow'], 'blue']]]
  22. ...
  23. >>> pprint.pprint(t, width=30)
  24. [[[['black', 'cyan'],
  25. 'white',
  26. ['green', 'red']],
  27. [['magenta', 'yellow'],
  28. 'blue']]]
  29. The :mod:`textwrap` module formats paragraphs of text to fit a given screen
  30. width::
  31. >>> import textwrap
  32. >>> doc = """The wrap() method is just like fill() except that it returns
  33. ... a list of strings instead of one big string with newlines to separate
  34. ... the wrapped lines."""
  35. ...
  36. >>> print(textwrap.fill(doc, width=40))
  37. The wrap() method is just like fill()
  38. except that it returns a list of strings
  39. instead of one big string with newlines
  40. to separate the wrapped lines.
  41. The :mod:`locale` module accesses a database of culture specific data formats.
  42. The grouping attribute of locale's format function provides a direct way of
  43. formatting numbers with group separators::
  44. >>> import locale
  45. >>> locale.setlocale(locale.LC_ALL, 'English_United States.1252')
  46. 'English_United States.1252'
  47. >>> conv = locale.localeconv() # get a mapping of conventions
  48. >>> x = 1234567.8
  49. >>> locale.format("%d", x, grouping=True)
  50. '1,234,567'
  51. >>> locale.format_string("%s%.*f", (conv['currency_symbol'],
  52. ... conv['frac_digits'], x), grouping=True)
  53. '$1,234,567.80'
  54. .. _tut-templating:
  55. Templating
  56. ==========
  57. The :mod:`string` module includes a versatile :class:`~string.Template` class
  58. with a simplified syntax suitable for editing by end-users. This allows users
  59. to customize their applications without having to alter the application.
  60. The format uses placeholder names formed by ``$`` with valid Python identifiers
  61. (alphanumeric characters and underscores). Surrounding the placeholder with
  62. braces allows it to be followed by more alphanumeric letters with no intervening
  63. spaces. Writing ``$$`` creates a single escaped ``$``::
  64. >>> from string import Template
  65. >>> t = Template('${village}folk send $$10 to $cause.')
  66. >>> t.substitute(village='Nottingham', cause='the ditch fund')
  67. 'Nottinghamfolk send $10 to the ditch fund.'
  68. The :meth:`~string.Template.substitute` method raises a :exc:`KeyError` when a
  69. placeholder is not supplied in a dictionary or a keyword argument. For
  70. mail-merge style applications, user supplied data may be incomplete and the
  71. :meth:`~string.Template.safe_substitute` method may be more appropriate ---
  72. it will leave placeholders unchanged if data is missing::
  73. >>> t = Template('Return the $item to $owner.')
  74. >>> d = dict(item='unladen swallow')
  75. >>> t.substitute(d)
  76. Traceback (most recent call last):
  77. ...
  78. KeyError: 'owner'
  79. >>> t.safe_substitute(d)
  80. 'Return the unladen swallow to $owner.'
  81. Template subclasses can specify a custom delimiter. For example, a batch
  82. renaming utility for a photo browser may elect to use percent signs for
  83. placeholders such as the current date, image sequence number, or file format::
  84. >>> import time, os.path
  85. >>> photofiles = ['img_1074.jpg', 'img_1076.jpg', 'img_1077.jpg']
  86. >>> class BatchRename(Template):
  87. ... delimiter = '%'
  88. >>> fmt = input('Enter rename style (%d-date %n-seqnum %f-format): ')
  89. Enter rename style (%d-date %n-seqnum %f-format): Ashley_%n%f
  90. >>> t = BatchRename(fmt)
  91. >>> date = time.strftime('%d%b%y')
  92. >>> for i, filename in enumerate(photofiles):
  93. ... base, ext = os.path.splitext(filename)
  94. ... newname = t.substitute(d=date, n=i, f=ext)
  95. ... print('{0} --> {1}'.format(filename, newname))
  96. img_1074.jpg --> Ashley_0.jpg
  97. img_1076.jpg --> Ashley_1.jpg
  98. img_1077.jpg --> Ashley_2.jpg
  99. Another application for templating is separating program logic from the details
  100. of multiple output formats. This makes it possible to substitute custom
  101. templates for XML files, plain text reports, and HTML web reports.
  102. .. _tut-binary-formats:
  103. Working with Binary Data Record Layouts
  104. =======================================
  105. The :mod:`struct` module provides :func:`~struct.pack` and
  106. :func:`~struct.unpack` functions for working with variable length binary
  107. record formats. The following example shows
  108. how to loop through header information in a ZIP file without using the
  109. :mod:`zipfile` module. Pack codes ``"H"`` and ``"I"`` represent two and four
  110. byte unsigned numbers respectively. The ``"<"`` indicates that they are
  111. standard size and in little-endian byte order::
  112. import struct
  113. with open('myfile.zip', 'rb') as f:
  114. data = f.read()
  115. start = 0
  116. for i in range(3): # show the first 3 file headers
  117. start += 14
  118. fields = struct.unpack('<IIIHH', data[start:start+16])
  119. crc32, comp_size, uncomp_size, filenamesize, extra_size = fields
  120. start += 16
  121. filename = data[start:start+filenamesize]
  122. start += filenamesize
  123. extra = data[start:start+extra_size]
  124. print(filename, hex(crc32), comp_size, uncomp_size)
  125. start += extra_size + comp_size # skip to the next header
  126. .. _tut-multi-threading:
  127. Multi-threading
  128. ===============
  129. Threading is a technique for decoupling tasks which are not sequentially
  130. dependent. Threads can be used to improve the responsiveness of applications
  131. that accept user input while other tasks run in the background. A related use
  132. case is running I/O in parallel with computations in another thread.
  133. The following code shows how the high level :mod:`threading` module can run
  134. tasks in background while the main program continues to run::
  135. import threading, zipfile
  136. class AsyncZip(threading.Thread):
  137. def __init__(self, infile, outfile):
  138. threading.Thread.__init__(self)
  139. self.infile = infile
  140. self.outfile = outfile
  141. def run(self):
  142. f = zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED)
  143. f.write(self.infile)
  144. f.close()
  145. print('Finished background zip of:', self.infile)
  146. background = AsyncZip('mydata.txt', 'myarchive.zip')
  147. background.start()
  148. print('The main program continues to run in foreground.')
  149. background.join() # Wait for the background task to finish
  150. print('Main program waited until background was done.')
  151. The principal challenge of multi-threaded applications is coordinating threads
  152. that share data or other resources. To that end, the threading module provides
  153. a number of synchronization primitives including locks, events, condition
  154. variables, and semaphores.
  155. While those tools are powerful, minor design errors can result in problems that
  156. are difficult to reproduce. So, the preferred approach to task coordination is
  157. to concentrate all access to a resource in a single thread and then use the
  158. :mod:`queue` module to feed that thread with requests from other threads.
  159. Applications using :class:`~queue.Queue` objects for inter-thread communication and
  160. coordination are easier to design, more readable, and more reliable.
  161. .. _tut-logging:
  162. Logging
  163. =======
  164. The :mod:`logging` module offers a full featured and flexible logging system.
  165. At its simplest, log messages are sent to a file or to ``sys.stderr``::
  166. import logging
  167. logging.debug('Debugging information')
  168. logging.info('Informational message')
  169. logging.warning('Warning:config file %s not found', 'server.conf')
  170. logging.error('Error occurred')
  171. logging.critical('Critical error -- shutting down')
  172. This produces the following output:
  173. .. code-block:: none
  174. WARNING:root:Warning:config file server.conf not found
  175. ERROR:root:Error occurred
  176. CRITICAL:root:Critical error -- shutting down
  177. By default, informational and debugging messages are suppressed and the output
  178. is sent to standard error. Other output options include routing messages
  179. through email, datagrams, sockets, or to an HTTP Server. New filters can select
  180. different routing based on message priority: :const:`~logging.DEBUG`,
  181. :const:`~logging.INFO`, :const:`~logging.WARNING`, :const:`~logging.ERROR`,
  182. and :const:`~logging.CRITICAL`.
  183. The logging system can be configured directly from Python or can be loaded from
  184. a user editable configuration file for customized logging without altering the
  185. application.
  186. .. _tut-weak-references:
  187. Weak References
  188. ===============
  189. Python does automatic memory management (reference counting for most objects and
  190. :term:`garbage collection` to eliminate cycles). The memory is freed shortly
  191. after the last reference to it has been eliminated.
  192. This approach works fine for most applications but occasionally there is a need
  193. to track objects only as long as they are being used by something else.
  194. Unfortunately, just tracking them creates a reference that makes them permanent.
  195. The :mod:`weakref` module provides tools for tracking objects without creating a
  196. reference. When the object is no longer needed, it is automatically removed
  197. from a weakref table and a callback is triggered for weakref objects. Typical
  198. applications include caching objects that are expensive to create::
  199. >>> import weakref, gc
  200. >>> class A:
  201. ... def __init__(self, value):
  202. ... self.value = value
  203. ... def __repr__(self):
  204. ... return str(self.value)
  205. ...
  206. >>> a = A(10) # create a reference
  207. >>> d = weakref.WeakValueDictionary()
  208. >>> d['primary'] = a # does not create a reference
  209. >>> d['primary'] # fetch the object if it is still alive
  210. 10
  211. >>> del a # remove the one reference
  212. >>> gc.collect() # run garbage collection right away
  213. 0
  214. >>> d['primary'] # entry was automatically removed
  215. Traceback (most recent call last):
  216. File "<stdin>", line 1, in <module>
  217. d['primary'] # entry was automatically removed
  218. File "C:/python34/lib/weakref.py", line 46, in __getitem__
  219. o = self.data[key]()
  220. KeyError: 'primary'
  221. .. _tut-list-tools:
  222. Tools for Working with Lists
  223. ============================
  224. Many data structure needs can be met with the built-in list type. However,
  225. sometimes there is a need for alternative implementations with different
  226. performance trade-offs.
  227. The :mod:`array` module provides an :class:`~array.array()` object that is like
  228. a list that stores only homogeneous data and stores it more compactly. The
  229. following example shows an array of numbers stored as two byte unsigned binary
  230. numbers (typecode ``"H"``) rather than the usual 16 bytes per entry for regular
  231. lists of Python int objects::
  232. >>> from array import array
  233. >>> a = array('H', [4000, 10, 700, 22222])
  234. >>> sum(a)
  235. 26932
  236. >>> a[1:3]
  237. array('H', [10, 700])
  238. The :mod:`collections` module provides a :class:`~collections.deque()` object
  239. that is like a list with faster appends and pops from the left side but slower
  240. lookups in the middle. These objects are well suited for implementing queues
  241. and breadth first tree searches::
  242. >>> from collections import deque
  243. >>> d = deque(["task1", "task2", "task3"])
  244. >>> d.append("task4")
  245. >>> print("Handling", d.popleft())
  246. Handling task1
  247. ::
  248. unsearched = deque([starting_node])
  249. def breadth_first_search(unsearched):
  250. node = unsearched.popleft()
  251. for m in gen_moves(node):
  252. if is_goal(m):
  253. return m
  254. unsearched.append(m)
  255. In addition to alternative list implementations, the library also offers other
  256. tools such as the :mod:`bisect` module with functions for manipulating sorted
  257. lists::
  258. >>> import bisect
  259. >>> scores = [(100, 'perl'), (200, 'tcl'), (400, 'lua'), (500, 'python')]
  260. >>> bisect.insort(scores, (300, 'ruby'))
  261. >>> scores
  262. [(100, 'perl'), (200, 'tcl'), (300, 'ruby'), (400, 'lua'), (500, 'python')]
  263. The :mod:`heapq` module provides functions for implementing heaps based on
  264. regular lists. The lowest valued entry is always kept at position zero. This
  265. is useful for applications which repeatedly access the smallest element but do
  266. not want to run a full list sort::
  267. >>> from heapq import heapify, heappop, heappush
  268. >>> data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
  269. >>> heapify(data) # rearrange the list into heap order
  270. >>> heappush(data, -5) # add a new entry
  271. >>> [heappop(data) for i in range(3)] # fetch the three smallest entries
  272. [-5, 0, 1]
  273. .. _tut-decimal-fp:
  274. Decimal Floating Point Arithmetic
  275. =================================
  276. The :mod:`decimal` module offers a :class:`~decimal.Decimal` datatype for
  277. decimal floating point arithmetic. Compared to the built-in :class:`float`
  278. implementation of binary floating point, the class is especially helpful for
  279. * financial applications and other uses which require exact decimal
  280. representation,
  281. * control over precision,
  282. * control over rounding to meet legal or regulatory requirements,
  283. * tracking of significant decimal places, or
  284. * applications where the user expects the results to match calculations done by
  285. hand.
  286. For example, calculating a 5% tax on a 70 cent phone charge gives different
  287. results in decimal floating point and binary floating point. The difference
  288. becomes significant if the results are rounded to the nearest cent::
  289. >>> from decimal import *
  290. >>> round(Decimal('0.70') * Decimal('1.05'), 2)
  291. Decimal('0.74')
  292. >>> round(.70 * 1.05, 2)
  293. 0.73
  294. The :class:`~decimal.Decimal` result keeps a trailing zero, automatically
  295. inferring four place significance from multiplicands with two place
  296. significance. Decimal reproduces mathematics as done by hand and avoids
  297. issues that can arise when binary floating point cannot exactly represent
  298. decimal quantities.
  299. Exact representation enables the :class:`~decimal.Decimal` class to perform
  300. modulo calculations and equality tests that are unsuitable for binary floating
  301. point::
  302. >>> Decimal('1.00') % Decimal('.10')
  303. Decimal('0.00')
  304. >>> 1.00 % 0.10
  305. 0.09999999999999995
  306. >>> sum([Decimal('0.1')]*10) == Decimal('1.0')
  307. True
  308. >>> sum([0.1]*10) == 1.0
  309. False
  310. The :mod:`decimal` module provides arithmetic with as much precision as needed::
  311. >>> getcontext().prec = 36
  312. >>> Decimal(1) / Decimal(7)
  313. Decimal('0.142857142857142857142857142857142857')