summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Minor doc fixes.Raymond Hettinger2009-02-043-5/+5
|
* Tweak the docs for Counter() objects.Raymond Hettinger2009-02-041-4/+4
|
* The default shelve pickle protocol should have been 3.Raymond Hettinger2009-02-031-1/+1
|
* Issue #1717, continued: Doc fixes and other cleanup relatedMark Dickinson2009-02-028-35/+24
| | | | to renaming of tp_compare.
* Issue #1717: documentation fixes related to the cmp removal.Mark Dickinson2009-02-016-36/+45
|
* Issue #1717: remove the cmp builtin function, the C-API functionsMark Dickinson2009-02-011-21/+0
| | | | PyObject_Cmp, PyObject_Compare, and various support functions.
* documentation wording fix for issue4903Gregory P. Smith2009-02-012-6/+6
|
* comprehrensions now have proper scoping #5106Benjamin Peterson2009-01-311-2/+2
|
* Merged revisions 68840,68881,68943,68945 via svnmerge fromBenjamin Peterson2009-01-301-13/+86
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68840 | andrew.kuchling | 2009-01-20 20:15:43 -0600 (Tue, 20 Jan 2009) | 1 line Add some items ........ r68881 | andrew.kuchling | 2009-01-23 21:28:18 -0600 (Fri, 23 Jan 2009) | 1 line Add various items ........ r68943 | tarek.ziade | 2009-01-25 16:09:10 -0600 (Sun, 25 Jan 2009) | 1 line Issue #5052: removed backward compatibility information (out of date) ........ r68945 | tarek.ziade | 2009-01-25 16:11:04 -0600 (Sun, 25 Jan 2009) | 1 line added missing module docstring ........
* Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge fromBenjamin Peterson2009-01-302-4/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68884 | kristjan.jonsson | 2009-01-24 04:52:26 -0600 (Sat, 24 Jan 2009) | 1 line Add a test for UNC import paths, see issue 3677 ........ r68973 | georg.brandl | 2009-01-26 15:29:38 -0600 (Mon, 26 Jan 2009) | 2 lines Copy over docs on advanced role features from Sphinx docs. ........ r68978 | mark.dickinson | 2009-01-26 15:51:56 -0600 (Mon, 26 Jan 2009) | 3 lines Issue #5073: Fix occasional failure of bsddb/test/test_lock.py. Thanks Hirokazu Yamamoto for the patch. ........ r69003 | benjamin.peterson | 2009-01-26 21:07:53 -0600 (Mon, 26 Jan 2009) | 1 line excellent place to use a set() #5069 ........ r69083 | benjamin.peterson | 2009-01-28 21:03:00 -0600 (Wed, 28 Jan 2009) | 1 line fix download url ........ r69112 | benjamin.peterson | 2009-01-29 20:02:25 -0600 (Thu, 29 Jan 2009) | 1 line pep8tify conditionals ........ r69113 | benjamin.peterson | 2009-01-29 20:24:39 -0600 (Thu, 29 Jan 2009) | 1 line make _tkinter._flatten check the result of PySequence_Size for errors #3880 ........
* fix a case of set_daemon #5087Benjamin Peterson2009-01-301-1/+1
|
* Fix error in docs. The source says proto 2 is the default.Raymond Hettinger2009-01-291-1/+1
|
* Merged revisions 69078-69080 via svnmerge fromBrett Cannon2009-01-292-2/+4
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69078 | brett.cannon | 2009-01-28 16:54:11 -0800 (Wed, 28 Jan 2009) | 2 lines Clarify some __del__ stuff. ........ r69079 | brett.cannon | 2009-01-28 16:54:32 -0800 (Wed, 28 Jan 2009) | 2 lines Minor spelling mistake in datetime docs. ........ r69080 | brett.cannon | 2009-01-28 16:55:33 -0800 (Wed, 28 Jan 2009) | 2 lines Ignore .pyc and .pyo files. ........
* Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the ↵Raymond Hettinger2009-01-291-15/+13
| | | | table by taking out inherited requirements for abstract methods.
* Merged revisions 69050 via svnmerge fromGuilherme Polo2009-01-282-2/+1404
| | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r69050 | guilherme.polo | 2009-01-28 11:09:03 -0200 (Wed, 28 Jan 2009) | 2 lines Added the ttk module. See issue #2983: Ttk support for Tkinter. ........
* Beautify grouper() recipe in docs.Raymond Hettinger2009-01-271-1/+1
|
* Put functions back in alphabetical order.Raymond Hettinger2009-01-271-39/+38
|
* Forward port r69001: itertools.combinations_with_replacement().Raymond Hettinger2009-01-272-18/+48
|
* Tweak column alignment in collections docs.Raymond Hettinger2009-01-271-33/+26
|
* Forward port r68941 adding itertools.compress().Raymond Hettinger2009-01-262-5/+15
|
* Backport r68942: update powerset() recipe.Raymond Hettinger2009-01-261-5/+3
|
* As discussed on python-dev, remove several operator functionsRaymond Hettinger2009-01-261-76/+0
| | | | | | | | | isSequenceType(), isMappingType(), and isNumberType() in favor of using abstract base classes. Also, remove repeat() and irepeat() in favor of mul() and imul(). After the buildbots have had a go at this. Will backport to Py3.0.1. For Py2.7, will just mark as deprecated.
* use the classmethod directiveBenjamin Peterson2009-01-251-4/+4
|
* Merged revisions 68933 via svnmerge fromTarek Ziadé2009-01-251-17/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68933 | tarek.ziade | 2009-01-25 20:29:10 +0100 (Sun, 25 Jan 2009) | 1 line Issue #4863, removing remaining bits ........
* Document both importlib.machinery.BuiltinImporter and FrozenImporter.Brett Cannon2009-01-251-1/+47
|
* Add the terms "finder", "loader", and "importer" to the glossary.Brett Cannon2009-01-251-0/+14
|
* merge r68915 to py3kJesse Noller2009-01-251-7/+51
|
* Clean up pickle usage examples.Alexandre Vassalotti2009-01-231-31/+18
|
* Issue 2980: Protocol 0 is not truly restricted to ASCII.Alexandre Vassalotti2009-01-231-2/+2
|
* Remove obsolete note on binary-mode vs. text-mode file.Alexandre Vassalotti2009-01-231-10/+0
|
* Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge fromBenjamin Peterson2009-01-234-60/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68750 | benjamin.peterson | 2009-01-18 16:47:04 -0600 (Sun, 18 Jan 2009) | 1 line fix encoding cookie case ........ r68776 | benjamin.peterson | 2009-01-19 10:17:54 -0600 (Mon, 19 Jan 2009) | 1 line move BufferedIOBase into the base class section ........ r68777 | benjamin.peterson | 2009-01-19 10:18:27 -0600 (Mon, 19 Jan 2009) | 1 line add email address ........ r68811 | benjamin.peterson | 2009-01-20 12:58:27 -0600 (Tue, 20 Jan 2009) | 1 line fix url ........ r68842 | andrew.kuchling | 2009-01-20 20:16:26 -0600 (Tue, 20 Jan 2009) | 1 line Markup fixes ........ r68859 | georg.brandl | 2009-01-22 12:29:28 -0600 (Thu, 22 Jan 2009) | 2 lines Clarify wording. ........
* merge r68862 to py3kJesse Noller2009-01-221-1/+3
|
* Fix markup for arguments in importlib docs.Brett Cannon2009-01-221-2/+2
|
* More doc tweaks.Raymond Hettinger2009-01-221-15/+12
|
* Tighten-up the docs for Counter().Raymond Hettinger2009-01-211-25/+21
|
* Simplify explanation of multiset operations by removing restrictions on ↵Raymond Hettinger2009-01-211-14/+6
| | | | negative inputs.
* Beautify and cleanup the references section.Raymond Hettinger2009-01-201-12/+19
|
* Fix typos.Raymond Hettinger2009-01-201-3/+3
|
* Forward port r68797: Fix-up jump targets in collections docs.Raymond Hettinger2009-01-201-15/+1
|
* Forward port r68792 and r68789 putting Counter in __all__ and adding Counter ↵Raymond Hettinger2009-01-201-4/+33
| | | | buildouts.
* Document the (very small) public API for importlib. As time goes on and someBrett Cannon2009-01-202-0/+79
| | | | key refactorings occur more of the API will be exposed and documented.
* Clarify how the specify the name of a module with the 'module' directive.Brett Cannon2009-01-201-3/+3
|
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ↵Benjamin Peterson2009-01-187-38/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r68633 | thomas.heller | 2009-01-16 12:53:44 -0600 (Fri, 16 Jan 2009) | 3 lines Change an example in the docs to avoid a mistake when the code is copy pasted and changed afterwards. ........ r68648 | benjamin.peterson | 2009-01-16 22:28:57 -0600 (Fri, 16 Jan 2009) | 1 line use enumerate ........ r68667 | amaury.forgeotdarc | 2009-01-17 14:18:59 -0600 (Sat, 17 Jan 2009) | 3 lines #4077: No need to append \n when calling Py_FatalError + fix a declaration to make it match the one in pythonrun.h ........ r68706 | benjamin.peterson | 2009-01-17 19:28:46 -0600 (Sat, 17 Jan 2009) | 1 line fix grammar ........ r68718 | georg.brandl | 2009-01-18 04:42:35 -0600 (Sun, 18 Jan 2009) | 1 line #4976: union() and intersection() take multiple args, but talk about "the other". ........ r68720 | georg.brandl | 2009-01-18 04:45:22 -0600 (Sun, 18 Jan 2009) | 1 line #4974: fix redundant mention of lists and tuples. ........ r68721 | georg.brandl | 2009-01-18 04:48:16 -0600 (Sun, 18 Jan 2009) | 1 line #4914: trunc is in math. ........ r68724 | georg.brandl | 2009-01-18 07:24:10 -0600 (Sun, 18 Jan 2009) | 1 line #4979: correct result range for some random functions. ........ r68725 | georg.brandl | 2009-01-18 07:47:26 -0600 (Sun, 18 Jan 2009) | 1 line #4857: fix augmented assignment target spec. ........ r68726 | georg.brandl | 2009-01-18 08:41:52 -0600 (Sun, 18 Jan 2009) | 1 line #4923: clarify what was added. ........ r68727 | georg.brandl | 2009-01-18 12:25:30 -0600 (Sun, 18 Jan 2009) | 1 line #4986: augassigns are not expressions. ........ r68739 | benjamin.peterson | 2009-01-18 15:11:38 -0600 (Sun, 18 Jan 2009) | 1 line fix test that wasn't working as expected #4990 ........
* Merged revisions 68568,68665 via svnmerge fromBenjamin Peterson2009-01-181-3/+3
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68568 | georg.brandl | 2009-01-13 02:11:07 -0600 (Tue, 13 Jan 2009) | 2 lines Fix call signature and markup. ........ r68665 | amaury.forgeotdarc | 2009-01-17 11:11:50 -0600 (Sat, 17 Jan 2009) | 3 lines #4930: Slightly cleaner (and faster) code in type creation: compare slots by address, not by name. ........
* #4975: fix bytes/str issue.Georg Brandl2009-01-181-1/+1
|
* #4983: clarify what "byte sequence" is.Georg Brandl2009-01-181-5/+6
|
* #4984: fix number of types.Georg Brandl2009-01-181-1/+1
|
* Merge r68708 to py3k, fixes 4449Jesse Noller2009-01-181-3/+3
|
* Fix a few more references to long integers in the docs.Mark Dickinson2009-01-175-9/+9
|
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+7
|