summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Update example to match the current syntax.Raymond Hettinger2008-02-151-1/+1
|
* Try to correct a markup error that does hide the following paragraph.Thomas Heller2008-02-141-1/+0
|
* Fix markupRaymond Hettinger2008-02-141-1/+1
|
* Simplify moneyfmt() recipe.Raymond Hettinger2008-02-141-13/+5
|
* Implemented Martin's suggestion to clear the free lists during the garbage ↵Christian Heimes2008-02-143-0/+21
| | | | collection of the highest generation.
* Fix markup.Raymond Hettinger2008-02-141-1/+1
|
* Show how to remove exponents.Raymond Hettinger2008-02-141-0/+11
|
* Improve rst markupRaymond Hettinger2008-02-141-6/+5
|
* Add fixed-point examples to the decimal FAQRaymond Hettinger2008-02-141-3/+30
|
* Fix decimal repr which should have used single quotes like other reprs.Raymond Hettinger2008-02-141-91/+91
|
* Add pickle support to ctypes types.Thomas Heller2008-02-131-0/+5
|
* #2063: correct order of utime and stime in os.times()Georg Brandl2008-02-131-1/+1
| | | | result on Windows.
* Implementation of Fraction.limit_denominator.Mark Dickinson2008-02-121-0/+18
| | | | | Remove Fraction.to_continued_fraction and Fraction.from_continued_fraction
* Restore fractions.rst to the document tree.Raymond Hettinger2008-02-121-1/+1
|
* Backport ABC docsRaymond Hettinger2008-02-111-8/+120
|
* Fix markupRaymond Hettinger2008-02-111-1/+1
|
* Put an extra space into the repr of a Fraction:Mark Dickinson2008-02-111-2/+2
| | | | Fraction(1, 2) instead of Fraction(1,2).
* Rename rational.Rational to fractions.Fraction, to avoid name clashMark Dickinson2008-02-103-36/+36
| | | | with numbers.Rational. See issue #1682 for related discussion.
* Complete an open todo on pickletools -- add a pickle optimizer.Raymond Hettinger2008-02-101-0/+7
|
* Typos in decimal comment and documentationMark Dickinson2008-02-101-2/+2
|
* Clarify that decimal also supports fixed-point arithmetic.Raymond Hettinger2008-02-101-3/+15
|
* Fix for newest doctools.Georg Brandl2008-02-092-11/+11
|
* Fix link.Georg Brandl2008-02-091-1/+1
|
* Needs only 2.4 now.Georg Brandl2008-02-091-1/+1
|
* Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as ↵Nick Coghlan2008-02-091-3/+6
| | | | context managers. (The NamedTemporaryFile fix should be considered for backporting to 2.5)
* Add advice on choosing between DictMixin and MutableMappingRaymond Hettinger2008-02-081-0/+2
|
* Fix typoRaymond Hettinger2008-02-071-2/+2
|
* The float conversion recipe is simpler in Py2.6Raymond Hettinger2008-02-071-25/+15
|
* Fix documentation for Calendar.iterweekdays(): firstweekday is a property.Walter Dörwald2008-02-071-3/+3
| | | | Fixes second part of #2018.
* Clarify that the output of TextCalendar.formatmonth() andWalter Dörwald2008-02-071-8/+10
| | | | | TextCalendar.formatyear() for custom instances won't be influenced by calls to the module global setfirstweekday() function. Fixes #2018.
* IEEE 754 should be IEEE 854; give precise reference forMark Dickinson2008-02-071-6/+6
| | | | comparisons involving NaNs.
* Fix broken link in decimal documentation.Mark Dickinson2008-02-071-1/+1
|
* Remove incorrect usage of :const: in documentation.Mark Dickinson2008-02-061-2/+2
|
* Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaNMark Dickinson2008-02-061-0/+13
| | | | raise InvalidOperation (and return False if InvalidOperation is trapped).
* Remove month parameter from Calendar.yeardatescalendar(),Walter Dörwald2008-02-061-9/+9
| | | | | | | Calendar.yeardays2calendar() and Calendar.yeardayscalendar() as the methods don't have such a parameter. Fixes issue #2017. Rewrap content to 80 chars.
* correct object nameSkip Montanaro2008-02-051-1/+1
|
* Convert external links to internal links. Fixes #2010.Georg Brandl2008-02-056-6/+9
|
* Patch #1953Christian Heimes2008-02-043-2/+40
| | | | | I implemented the function sys._compact_freelists() and C API functions PyInt_/PyFloat_CompactFreeList() to compact the pre-allocated blocks of ints and floats. They allow the user to reduce the memory usage of a Python process that deals with lots of numbers. The patch also renames sys._cleartypecache to sys._clear_type_cache
* Ensure that PySet_Add() operates on a newly created frozenset, like ↵Amaury Forgeot d'Arc2008-02-031-0/+7
| | | | | | | | PyTuple_SetItem does. Add PyFrozenSet_Check(), which was not needed before; The list of Py*Set_Check* macros seems to be complete now. Add missing NEWS entries about all this.
* #2003: fix sentence.Georg Brandl2008-02-031-1/+1
|
* Remove extra tick marks and add a missing closing parenthesis.Brett Cannon2008-02-031-1/+1
|
* Add email example how to send a multipart message.Georg Brandl2008-02-022-3/+56
| | | | Written for GHOP by Martin Matejek.
* Amendments to the urllib2 docs, written for GHOP by Thomas Lamb.Georg Brandl2008-02-021-9/+30
|
* Update for latest sphinx latex writer.Georg Brandl2008-02-011-12/+12
|
* Wording nit.Georg Brandl2008-02-011-2/+2
|
* Rename batch file.Georg Brandl2008-02-011-0/+0
|
* Add link checker builder, written for GHOP by Thomas Lamb.Georg Brandl2008-02-012-5/+15
|
* Update IPv6 RFC number.Georg Brandl2008-02-011-1/+1
|
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-012-8/+8
| | | | | http://mail.python.org/pipermail/python-dev/2008-January/076626.html and issue 1965.
* Added more documentation on how mixed-mode arithmetic should be implemented. IJeffrey Yasskin2008-01-311-0/+141
| | | | | also noticed and fixed a bug in Rational's forward operators (they were claiming all instances of numbers.Rational instead of just the concrete types).