- 8e6ad6f Expand on the semantics of reload(). Closes #919099. by Skip Montanaro · 21 years ago
- fcadf6b fix reference to File Object documentation closes SF bug #825810 by Fred Drake · 22 years ago
- dcf32a6 fix markup errors by Fred Drake · 22 years ago
- 7a3786c [Bug #857821] Remove mention of deprecated string.{atol,atof} functions. (Patch from Gerrit Holl) by Andrew M. Kuchling · 22 years ago
- 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 22 years ago
- e3d5f98 Put str() in alphabetical order. by Raymond Hettinger · 22 years ago
- f96dd83 - fix markup in the bool() description by Fred Drake · 22 years ago
- d446230 Nits from a review of the documentation update. by Raymond Hettinger · 22 years ago
- bd93b3e As discussed on python-dev, banish apply(), buffer(), coerce(), and by Raymond Hettinger · 22 years ago
- 8bafb2a Patch #843088: Fix typos. Backported to 2.3. by Martin v. Löwis · 22 years ago
- a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 22 years ago
- 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 22 years ago
- c2a2832 SF bug #821701: reduce docs neglect a very important piece of information. by Raymond Hettinger · 22 years ago
- 7e43110 SF 810242. Fix doubled word errors. by Raymond Hettinger · 22 years ago
- 74923d7 SF bug #560286: Add docs for 'basestring' by Raymond Hettinger · 22 years ago
- 9981213 SF bug 799191: fix markup by Raymond Hettinger · 22 years ago
- 999b57c Fix double word typos. by Raymond Hettinger · 22 years ago
- f17d65d SF patch#786531 'the the' typo. Contributed by George Yoshida by Raymond Hettinger · 22 years ago
- eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 22 years ago
- b25229d Fix SF bug #766288, property() example gives syntax error by Neal Norwitz · 22 years ago
- 774816f SF bug #764616: execfile(filename,...) not execfile(file,...) by Raymond Hettinger · 22 years ago
- 2884d6d Fix a variety of small markup nits. by Fred Drake · 22 years ago
- 3ede784 - note that super() only applies to new-style classes; by Fred Drake · 22 years ago
- f91888b markup consistency nits by Fred Drake · 22 years ago
- 2b9bc08 Removed useless intra-section references which jump to the top of the by Raymond Hettinger · 22 years ago
- 938b7a0 Fix some markup nits by Neal Norwitz · 22 years ago
- 7e902b2 * Added missing documentation for object(). by Raymond Hettinger · 22 years ago
- 3985df2 SF bug #660022: parameters for int(), str(), etc. by Raymond Hettinger · 22 years ago
- 80b3f68 SF bug: 751941 Invisible HTML tag by Raymond Hettinger · 22 years ago
- 7472336 Patch #744877: Explain filter in terms of list comprehension. Remove by Martin v. Löwis · 22 years ago
- 8f53cdc - object is a class type, not a function by Fred Drake · 22 years ago
- 0dfd7a9 Missing parenthesis found by texcheck.py by Raymond Hettinger · 22 years ago
- 282be3a - explain the start argument to sum() by Fred Drake · 22 years ago
- a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 22 years ago
- 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 23 years ago
- 69bf8f3 SF bug #655271: Slightly modify locals() doc by Raymond Hettinger · 23 years ago
- 45e482f Document that apply() is deprecated. See: by Fred Drake · 23 years ago
- 046b8a7 Fix SF # 641111, Undocumented side effect of eval by Neal Norwitz · 23 years ago
- e9ce25e Fix SF #642742, property() builtin not documented by Neal Norwitz · 23 years ago
- d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 23 years ago
- 6e596b6 Added change note about returning a dictionary based on keyword arguments. by Fred Drake · 23 years ago
- a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 23 years ago
- f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 23 years ago
- 9482d25 Update example for the type() function to use the currently accepted by Fred Drake · 23 years ago
- d6cf8be Modify example to use string methods instead of the string module. by Fred Drake · 23 years ago
- 3e930ba Another try at clarifying what goes into and comes out of Unicode objects. by Fred Drake · 23 years ago
- 7b788e0 Clarify that len() of a Unicode string returns the number of storage units, by Fred Drake · 23 years ago
- d918884 Fix typo by Raymond Hettinger · 23 years ago
- 5ec486b Add a note that apply() is needed since the extended call syntax is by Fred Drake · 23 years ago
- 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 23 years ago
- 2095b96 reduce(): Clarified what is returned in the case of a sequence 1 item long and by Fred Drake · 23 years ago
- 4254cbd Note that unicode() can raise LookupError for unknown codecs. by Fred Drake · 23 years ago
- 50e1286 Fix typo: "an Unicode string" --> "a Unicode string" by Fred Drake · 23 years ago
- 78e057a Clarify the version information for the unicode() built-in. by Fred Drake · 23 years ago
- 807354f Add a note that divmod() with complex numbers is deprecated. by Fred Drake · 23 years ago
- 177b4a0 Jack's documentation for the U mode character on the file() by Barry Warsaw · 23 years ago
- 6cf09f0 Patch 543387. Document deprecation of complex %, //,and divmod(). by Raymond Hettinger · 23 years ago
- 38f7197 Documentation for the enumerate() function/type. This closes SF patch #547162. by Fred Drake · 23 years ago
- 933f159 Add a version annotation for the help() function. by Fred Drake · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- da8a6dd Added missing version annotation for dict(). by Fred Drake · 23 years ago
- 9f4341b SF bug #501591: dir() doc is old Bugfix candidate. by Tim Peters · 23 years ago
- 732299f Add documentation for the help() built-in; contributed by Ka-Ping Yee. by Fred Drake · 24 years ago
- 526c7a0 Ensure that complex() only accepts a string argument as the first arg, by Fred Drake · 24 years ago
- 5172adc Minor clarification of the zip() description, based on a comment sent to by Fred Drake · 24 years ago
- 3570551 Remove most references to __members__ and __methods__, leaving only one pair by Fred Drake · 24 years ago
- 0b66310 When referring to a formal parameter from the description, use the name given by Fred Drake · 24 years ago
- 66ded52 apply() documentation: Remove a detail about the implementation that does by Fred Drake · 24 years ago
- a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 24 years ago
- ef7d08a Some style changes and typo fixes. by Fred Drake · 24 years ago
- 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 24 years ago
- b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 24 years ago
- e0063d2 Update the documentation for the isinstance() function to reflect recent by Fred Drake · 24 years ago
- 3899d74 Make clear that tuple() accepts the same kind of arguments as list(). by Tim Peters · 24 years ago
- af5910f The execfile() docs imply it acts on locals same as exec. But in truth by Tim Peters · 24 years ago
- 1c33daf Correct docs for long(float). by Tim Peters · 24 years ago
- 0d68246 Fix two typos in the text about compile(), and add two caveats from by Guido van Rossum · 24 years ago
- 2e29bfb Document new file() constructor, with the body of open()'s text, plus a by Tim Peters · 24 years ago
- 00bb329 Document the built-in iter() function. by Fred Drake · 24 years ago
- 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 24 years ago
- 53da317 Docs for the PEP 264 changes. by Michael W. Hudson · 24 years ago
- 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 24 years ago
- bf5a774 On int/long to the negative int/long power, let float handle it by Guido van Rossum · 24 years ago
- 91f2f26 Fix up a few style nits -- avoid "e.g." and "i.e." -- these make by Fred Drake · 24 years ago
- c0dac1a Beef up the unicode() description a bit, based on material from AMK's by Fred Drake · 24 years ago
- eacdec6 Update the filter() and list() descriptions to include information about by Fred Drake · 24 years ago
- 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 25 years ago
- bc0b260 Minor markup cleaning, and one required fix in the unistr() description. by Fred Drake · 25 years ago
- ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 25 years ago
- 9c15fa7 Description of long(): A string parameter is no longer required to be by Fred Drake · 25 years ago
- 17383b9 Added information about the %r string formatting conversion. Added note by Fred Drake · 25 years ago
- 1349437 When referring to namespaces, always say "namespaces" instead of "name spaces". by Fred Drake · 25 years ago
- f96e0d2 Various clarifications and minor nits fixed. Affected descriptions of by Fred Drake · 25 years ago
- e581bb3 Small cleanups, and note when zip() entered the menagerie. by Fred Drake · 25 years ago
- 8b168ba int() description: Fix markup to avoid image generation for math mode. by Fred Drake · 25 years ago
- faefa2a Both PEP 201 Lockstep Iteration and SF patch #101030 have been by Barry Warsaw · 25 years ago
- 30f76ff Update version numbering from 1.6 to 2.0. by Fred Drake · 25 years ago
- 8aa3bd9 Make it clear that id() can return either a long integer or a plain integer. by Fred Drake · 25 years ago
- 343301a unichr(), unicode(): Added \versionadded{} annotations. by Fred Drake · 25 years ago
- 665dd70 Note the exception raised when parameter to chr() is out of range. by Fred Drake · 25 years ago