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.

400 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 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r64722 | georg.brandl | 2008-07-05 12:13:36 +0200 (Sat, 05 Jul 2008) | 4 lines #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade. This is a new feature, but Barry authorized adding it in the beta period. ........ r64729 | mark.dickinson | 2008-07-05 13:33:52 +0200 (Sat, 05 Jul 2008) | 5 lines Issue 3188: accept float('infinity') as well as float('inf'). This makes the float constructor behave in the same way as specified by various other language standards, including C99, IEEE 754r, and the IBM Decimal standard. ........ r64753 | gregory.p.smith | 2008-07-06 05:35:58 +0200 (Sun, 06 Jul 2008) | 4 lines - Issue #2862: Make int and float freelist management consistent with other freelists. Changes their CompactFreeList apis into ClearFreeList apis and calls them via gc.collect(). ........ r64845 | raymond.hettinger | 2008-07-10 16:03:19 +0200 (Thu, 10 Jul 2008) | 1 line Issue 3301: Bisect functions behaved badly when lo was negative. ........ r64846 | raymond.hettinger | 2008-07-10 16:34:57 +0200 (Thu, 10 Jul 2008) | 1 line Issue 3285: Fractions from_float() and from_decimal() accept Integral arguments. ........ r64849 | andrew.kuchling | 2008-07-10 16:43:31 +0200 (Thu, 10 Jul 2008) | 1 line Wording changes ........ r64871 | raymond.hettinger | 2008-07-11 14:00:21 +0200 (Fri, 11 Jul 2008) | 1 line Add cautionary note on the use of PySequence_Fast_ITEMS. ........ r64880 | amaury.forgeotdarc | 2008-07-11 23:28:25 +0200 (Fri, 11 Jul 2008) | 5 lines #3317 in zipfile module, restore the previous names of global variables: some applications relied on them. Also remove duplicated lines. ........ r64881 | amaury.forgeotdarc | 2008-07-11 23:45:06 +0200 (Fri, 11 Jul 2008) | 3 lines #3342: In tracebacks, printed source lines were not indented since r62555. #3343: Py_DisplaySourceLine should be a private function. Rename it to _Py_DisplaySourceLine. ........ r64882 | josiah.carlson | 2008-07-12 00:17:14 +0200 (Sat, 12 Jul 2008) | 2 lines Fix for the AttributeError in test_asynchat. ........ r64885 | josiah.carlson | 2008-07-12 01:26:59 +0200 (Sat, 12 Jul 2008) | 2 lines Fixed test for asyncore. ........ r64888 | matthias.klose | 2008-07-12 09:51:48 +0200 (Sat, 12 Jul 2008) | 2 lines - Fix bashisms in Tools/faqwiz/move-faqwiz.sh ........ r64897 | benjamin.peterson | 2008-07-12 22:16:19 +0200 (Sat, 12 Jul 2008) | 1 line fix various doc typos #3320 ........ r64900 | alexandre.vassalotti | 2008-07-13 00:06:53 +0200 (Sun, 13 Jul 2008) | 2 lines Fixed typo. ........ r64901 | benjamin.peterson | 2008-07-13 01:41:19 +0200 (Sun, 13 Jul 2008) | 1 line #1778443 robotparser fixes from Aristotelis Mikropoulos ........ r64915 | nick.coghlan | 2008-07-13 16:52:36 +0200 (Sun, 13 Jul 2008) | 1 line Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) ........ r64926 | martin.v.loewis | 2008-07-13 22:31:49 +0200 (Sun, 13 Jul 2008) | 2 lines Add turtle into the module index. ........ r64927 | alexandre.vassalotti | 2008-07-13 22:42:44 +0200 (Sun, 13 Jul 2008) | 3 lines Issue #3274: Use a less common identifier for the temporary variable in Py_CLEAR(). ........ r64928 | andrew.kuchling | 2008-07-13 23:43:25 +0200 (Sun, 13 Jul 2008) | 1 line Re-word ........ r64929 | andrew.kuchling | 2008-07-13 23:43:52 +0200 (Sun, 13 Jul 2008) | 1 line Add various items; move ctypes items into a subsection of their own ........ r64938 | andrew.kuchling | 2008-07-14 02:35:32 +0200 (Mon, 14 Jul 2008) | 1 line Typo fixes ........ r64939 | andrew.kuchling | 2008-07-14 02:40:55 +0200 (Mon, 14 Jul 2008) | 1 line Typo fix ........ r64940 | andrew.kuchling | 2008-07-14 03:18:16 +0200 (Mon, 14 Jul 2008) | 1 line Typo fix ........ r64941 | andrew.kuchling | 2008-07-14 03:18:31 +0200 (Mon, 14 Jul 2008) | 1 line Expand the multiprocessing section ........ r64944 | gregory.p.smith | 2008-07-14 08:06:48 +0200 (Mon, 14 Jul 2008) | 7 lines Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the child process rather than both parent and child. Does anyone actually use fork1()? It appears to be a Solaris thing but if Python is built with pthreads on Solaris, fork1() and fork() should be the same. ........ r64961 | jesse.noller | 2008-07-15 15:47:33 +0200 (Tue, 15 Jul 2008) | 1 line multiprocessing/connection.py patch to remove fqdn oddness for issue 3270 ........ r64966 | nick.coghlan | 2008-07-15 17:40:22 +0200 (Tue, 15 Jul 2008) | 1 line Add missing NEWS entry for r64962 ........ r64973 | jesse.noller | 2008-07-15 20:29:18 +0200 (Tue, 15 Jul 2008) | 1 line Revert 3270 patch: self._address is in pretty widespread use, need to revisit ........
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:`Template` class with a
  58. simplified syntax suitable for editing by end-users. This allows users to
  59. 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:`substitute` method raises a :exc:`KeyError` when a placeholder is not
  69. supplied in a dictionary or a keyword argument. For mail-merge style
  70. applications, user supplied data may be incomplete and the
  71. :meth:`safe_substitute` method may be more appropriate --- it will leave
  72. 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:`pack` and :func:`unpack` functions for
  106. working with variable length binary record formats. The following example shows
  107. how to loop through header information in a ZIP file without using the
  108. :mod:`zipfile` module. Pack codes ``"H"`` and ``"I"`` represent two and four
  109. byte unsigned numbers respectively. The ``"<"`` indicates that they are
  110. standard size and in little-endian byte order::
  111. import struct
  112. with open('myfile.zip', 'rb') as f:
  113. data = f.read()
  114. start = 0
  115. for i in range(3): # show the first 3 file headers
  116. start += 14
  117. fields = struct.unpack('<IIIHH', data[start:start+16])
  118. crc32, comp_size, uncomp_size, filenamesize, extra_size = fields
  119. start += 16
  120. filename = data[start:start+filenamesize]
  121. start += filenamesize
  122. extra = data[start:start+extra_size]
  123. print(filename, hex(crc32), comp_size, uncomp_size)
  124. start += extra_size + comp_size # skip to the next header
  125. .. _tut-multi-threading:
  126. Multi-threading
  127. ===============
  128. Threading is a technique for decoupling tasks which are not sequentially
  129. dependent. Threads can be used to improve the responsiveness of applications
  130. that accept user input while other tasks run in the background. A related use
  131. case is running I/O in parallel with computations in another thread.
  132. The following code shows how the high level :mod:`threading` module can run
  133. tasks in background while the main program continues to run::
  134. import threading, zipfile
  135. class AsyncZip(threading.Thread):
  136. def __init__(self, infile, outfile):
  137. threading.Thread.__init__(self)
  138. self.infile = infile
  139. self.outfile = outfile
  140. def run(self):
  141. f = zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED)
  142. f.write(self.infile)
  143. f.close()
  144. print('Finished background zip of:', self.infile)
  145. background = AsyncZip('mydata.txt', 'myarchive.zip')
  146. background.start()
  147. print('The main program continues to run in foreground.')
  148. background.join() # Wait for the background task to finish
  149. print('Main program waited until background was done.')
  150. The principal challenge of multi-threaded applications is coordinating threads
  151. that share data or other resources. To that end, the threading module provides
  152. a number of synchronization primitives including locks, events, condition
  153. variables, and semaphores.
  154. While those tools are powerful, minor design errors can result in problems that
  155. are difficult to reproduce. So, the preferred approach to task coordination is
  156. to concentrate all access to a resource in a single thread and then use the
  157. :mod:`queue` module to feed that thread with requests from other threads.
  158. Applications using :class:`Queue` objects for inter-thread communication and
  159. coordination are easier to design, more readable, and more reliable.
  160. .. _tut-logging:
  161. Logging
  162. =======
  163. The :mod:`logging` module offers a full featured and flexible logging system.
  164. At its simplest, log messages are sent to a file or to ``sys.stderr``::
  165. import logging
  166. logging.debug('Debugging information')
  167. logging.info('Informational message')
  168. logging.warning('Warning:config file %s not found', 'server.conf')
  169. logging.error('Error occurred')
  170. logging.critical('Critical error -- shutting down')
  171. This produces the following output:
  172. .. code-block:: none
  173. WARNING:root:Warning:config file server.conf not found
  174. ERROR:root:Error occurred
  175. CRITICAL:root:Critical error -- shutting down
  176. By default, informational and debugging messages are suppressed and the output
  177. is sent to standard error. Other output options include routing messages
  178. through email, datagrams, sockets, or to an HTTP Server. New filters can select
  179. different routing based on message priority: :const:`DEBUG`, :const:`INFO`,
  180. :const:`WARNING`, :const:`ERROR`, and :const:`CRITICAL`.
  181. The logging system can be configured directly from Python or can be loaded from
  182. a user editable configuration file for customized logging without altering the
  183. application.
  184. .. _tut-weak-references:
  185. Weak References
  186. ===============
  187. Python does automatic memory management (reference counting for most objects and
  188. :term:`garbage collection` to eliminate cycles). The memory is freed shortly
  189. after the last reference to it has been eliminated.
  190. This approach works fine for most applications but occasionally there is a need
  191. to track objects only as long as they are being used by something else.
  192. Unfortunately, just tracking them creates a reference that makes them permanent.
  193. The :mod:`weakref` module provides tools for tracking objects without creating a
  194. reference. When the object is no longer needed, it is automatically removed
  195. from a weakref table and a callback is triggered for weakref objects. Typical
  196. applications include caching objects that are expensive to create::
  197. >>> import weakref, gc
  198. >>> class A:
  199. ... def __init__(self, value):
  200. ... self.value = value
  201. ... def __repr__(self):
  202. ... return str(self.value)
  203. ...
  204. >>> a = A(10) # create a reference
  205. >>> d = weakref.WeakValueDictionary()
  206. >>> d['primary'] = a # does not create a reference
  207. >>> d['primary'] # fetch the object if it is still alive
  208. 10
  209. >>> del a # remove the one reference
  210. >>> gc.collect() # run garbage collection right away
  211. 0
  212. >>> d['primary'] # entry was automatically removed
  213. Traceback (most recent call last):
  214. File "<stdin>", line 1, in <module>
  215. d['primary'] # entry was automatically removed
  216. File "C:/python33/lib/weakref.py", line 46, in __getitem__
  217. o = self.data[key]()
  218. KeyError: 'primary'
  219. .. _tut-list-tools:
  220. Tools for Working with Lists
  221. ============================
  222. Many data structure needs can be met with the built-in list type. However,
  223. sometimes there is a need for alternative implementations with different
  224. performance trade-offs.
  225. The :mod:`array` module provides an :class:`array()` object that is like a list
  226. that stores only homogeneous data and stores it more compactly. The following
  227. example shows an array of numbers stored as two byte unsigned binary numbers
  228. (typecode ``"H"``) rather than the usual 16 bytes per entry for regular lists of
  229. Python int objects::
  230. >>> from array import array
  231. >>> a = array('H', [4000, 10, 700, 22222])
  232. >>> sum(a)
  233. 26932
  234. >>> a[1:3]
  235. array('H', [10, 700])
  236. The :mod:`collections` module provides a :class:`deque()` object that is like a
  237. list with faster appends and pops from the left side but slower lookups in the
  238. middle. These objects are well suited for implementing queues and breadth first
  239. tree searches::
  240. >>> from collections import deque
  241. >>> d = deque(["task1", "task2", "task3"])
  242. >>> d.append("task4")
  243. >>> print("Handling", d.popleft())
  244. Handling task1
  245. ::
  246. unsearched = deque([starting_node])
  247. def breadth_first_search(unsearched):
  248. node = unsearched.popleft()
  249. for m in gen_moves(node):
  250. if is_goal(m):
  251. return m
  252. unsearched.append(m)
  253. In addition to alternative list implementations, the library also offers other
  254. tools such as the :mod:`bisect` module with functions for manipulating sorted
  255. lists::
  256. >>> import bisect
  257. >>> scores = [(100, 'perl'), (200, 'tcl'), (400, 'lua'), (500, 'python')]
  258. >>> bisect.insort(scores, (300, 'ruby'))
  259. >>> scores
  260. [(100, 'perl'), (200, 'tcl'), (300, 'ruby'), (400, 'lua'), (500, 'python')]
  261. The :mod:`heapq` module provides functions for implementing heaps based on
  262. regular lists. The lowest valued entry is always kept at position zero. This
  263. is useful for applications which repeatedly access the smallest element but do
  264. not want to run a full list sort::
  265. >>> from heapq import heapify, heappop, heappush
  266. >>> data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
  267. >>> heapify(data) # rearrange the list into heap order
  268. >>> heappush(data, -5) # add a new entry
  269. >>> [heappop(data) for i in range(3)] # fetch the three smallest entries
  270. [-5, 0, 1]
  271. .. _tut-decimal-fp:
  272. Decimal Floating Point Arithmetic
  273. =================================
  274. The :mod:`decimal` module offers a :class:`Decimal` datatype for decimal
  275. floating point arithmetic. Compared to the built-in :class:`float`
  276. implementation of binary floating point, the class is especially helpful for
  277. * financial applications and other uses which require exact decimal
  278. representation,
  279. * control over precision,
  280. * control over rounding to meet legal or regulatory requirements,
  281. * tracking of significant decimal places, or
  282. * applications where the user expects the results to match calculations done by
  283. hand.
  284. For example, calculating a 5% tax on a 70 cent phone charge gives different
  285. results in decimal floating point and binary floating point. The difference
  286. becomes significant if the results are rounded to the nearest cent::
  287. >>> from decimal import *
  288. >>> round(Decimal('0.70') * Decimal('1.05'), 2)
  289. Decimal('0.74')
  290. >>> round(.70 * 1.05, 2)
  291. 0.73
  292. The :class:`Decimal` result keeps a trailing zero, automatically inferring four
  293. place significance from multiplicands with two place significance. Decimal
  294. reproduces mathematics as done by hand and avoids issues that can arise when
  295. binary floating point cannot exactly represent decimal quantities.
  296. Exact representation enables the :class:`Decimal` class to perform modulo
  297. calculations and equality tests that are unsuitable for binary floating point::
  298. >>> Decimal('1.00') % Decimal('.10')
  299. Decimal('0.00')
  300. >>> 1.00 % 0.10
  301. 0.09999999999999995
  302. >>> sum([Decimal('0.1')]*10) == Decimal('1.0')
  303. True
  304. >>> sum([0.1]*10) == 1.0
  305. False
  306. The :mod:`decimal` module provides arithmetic with as much precision as needed::
  307. >>> getcontext().prec = 36
  308. >>> Decimal(1) / Decimal(7)
  309. Decimal('0.142857142857142857142857142857142857')