Commit Graph

9601 Commits

Author SHA1 Message Date
Georg Brandl 340739e216 Fix indentation. 2008-07-24 07:09:21 +00:00
Benjamin Peterson 4020221838 add some documentation for 2to3 2008-07-24 02:45:37 +00:00
Benjamin Peterson 8e234c6e30 fix markup 2008-07-24 02:31:28 +00:00
Benjamin Peterson 415ce062bc fix spacing 2008-07-24 02:27:46 +00:00
Georg Brandl 8c81fdad33 Use correct indentation. 2008-07-23 16:00:44 +00:00
Georg Brandl d4c7e636a9 Move opcode handling to Python's extension. 2008-07-23 15:17:09 +00:00
Georg Brandl f9efabb6d2 3k-warn about parser's "ast" aliases. 2008-07-23 15:16:45 +00:00
Raymond Hettinger d8dd86cc26 One more attribution. 2008-07-22 19:18:50 +00:00
Raymond Hettinger 5d4d16e44d Fix credits for math.sum() 2008-07-22 19:03:05 +00:00
Raymond Hettinger 340383ce70 Tuples now have both count() and index(). 2008-07-22 19:00:47 +00:00
Raymond Hettinger 9973ee86ed Remove out-of-date section on Exact/Inexact. 2008-07-22 18:54:02 +00:00
Gregory P. Smith 0470bab697 Issue #2620: Overflow checking when allocating or reallocating memory
was not always being done properly in some python types and extension
modules.  PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have
all been updated to perform better checks and places in the code that
would previously leak memory on the error path when such an allocation
failed have been fixed.
2008-07-22 04:46:32 +00:00
Georg Brandl be44991baa nonlocal is not in 2.6. 2008-07-21 18:26:21 +00:00
Georg Brandl e64f738507 #926501: add info where to put the docstring. 2008-07-20 11:50:29 +00:00
Raymond Hettinger f1f46f0350 Clean-up itertools docs and recipes. 2008-07-19 23:58:47 +00:00
Raymond Hettinger 39e0eb766f Fix compress() recipe in docs to use itertools. 2008-07-19 23:21:57 +00:00
Georg Brandl b46d6ff279 Add ordering info for findall and finditer. 2008-07-19 13:48:44 +00:00
Georg Brandl 3de1e69dc7 #3323: mention that if inheriting from a class without __slots__,
the subclass will have a __dict__ available too.
2008-07-19 13:09:42 +00:00
Raymond Hettinger 3369167089 Add recipe to the itertools docs. 2008-07-19 00:43:00 +00:00
Brett Cannon 1e8fba729e Deprecate the sunaudio module for removal in Python 3.0. The sunau module can provide similar functionality. 2008-07-18 19:30:22 +00:00
Georg Brandl bf89981839 Document the different meaning of precision for {:f} and {:g}.
Also document how inf and nan are formatted. #3404.
2008-07-18 11:15:06 +00:00
Vinay Sajip 2a649f93b0 Issue #3389: Allow resolving dotted names for handlers in logging configuration files. Thanks to Philip Jenvey for the patch. 2008-07-18 09:00:35 +00:00
Eric Smith d6c393ab2b Backed out r65069, pending fixing it in Windows. 2008-07-17 19:49:47 +00:00
Eric Smith 454816d8bd Issue 3382: Make '%F' and float.__format__('F') convert results to upper case. 2008-07-17 17:48:39 +00:00
Georg Brandl a66bb0a741 #3388: add a paragraph about using "with" for file objects. 2008-07-16 23:35:54 +00:00
Eric Smith a5fa5a218d Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.format(). 2008-07-16 00:11:49 +00:00
Georg Brandl e2efba4730 Move label to correct heading. 2008-07-15 23:59:15 +00:00
Mark Dickinson 7103aa42c0 Issue #3008: add instance method float.hex and class method float.fromhex
to convert floats to and from hexadecimal strings respectively.
2008-07-15 19:08:33 +00:00
Andrew M. Kuchling 4ec0c27eea Expand the multiprocessing section 2008-07-14 01:18:31 +00:00
Andrew M. Kuchling 8ea605c204 Typo fix 2008-07-14 01:18:16 +00:00
Andrew M. Kuchling a2478d9fa0 Typo fix 2008-07-14 00:40:55 +00:00
Andrew M. Kuchling ded01d1bf0 Typo fixes 2008-07-14 00:35:32 +00:00
Andrew M. Kuchling b93dc5f0ce Add various items; move ctypes items into a subsection of their own 2008-07-13 21:43:52 +00:00
Andrew M. Kuchling 00f34c69b3 Re-word 2008-07-13 21:43:25 +00:00
Martin v. Löwis 060cd1e1ea Add turtle into the module index. 2008-07-13 20:31:49 +00:00
Nick Coghlan 12c8660cc6 Correct a couple of errors in the updated catch_warning documentation (the Py3k version was fixed before being checked in) 2008-07-13 12:36:42 +00:00
Nick Coghlan 38469e2719 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for itto test_warnings. 2008-07-13 12:23:47 +00:00
Alexandre Vassalotti 24122593f0 Fixed typo. 2008-07-12 22:06:53 +00:00
Benjamin Peterson 90f36730e2 fix various doc typos #3320 2008-07-12 20:16:19 +00:00
Raymond Hettinger 8dbbb96929 Add cautionary note on the use of PySequence_Fast_ITEMS. 2008-07-11 12:00:21 +00:00
Brett Cannon 963ffdb9c9 Doc that robotparse has been renamed urllib.robotparser in Python 3.0. 2008-07-11 00:48:57 +00:00
Brett Cannon f6afa334b9 Doc that urlparse is named urllib.parse in Python 3.0. 2008-07-11 00:16:30 +00:00
Brett Cannon 97aa1aeebd Document the fact that urllib2 spans multiple modules with new names in Python
3.0.
2008-07-11 00:12:52 +00:00
Robert Schuppenies 4762902998 Added garbage collector overhead and optional default return value to
sys.getsizeof.
2008-07-10 17:13:55 +00:00
Georg Brandl dbc5987e2f Add missing ABCs to list. 2008-07-08 07:05:23 +00:00
Andrew M. Kuchling 10cf7d947d Fix example to match text 2008-07-07 16:51:09 +00:00
Andrew M. Kuchling aaca978103 Add two items; rewrap paragraph 2008-07-06 17:44:17 +00:00
Andrew M. Kuchling c40608491c Wording fix 2008-07-06 17:43:16 +00:00
Georg Brandl de2939bb75 Fix opensearch template. 2008-07-06 17:36:20 +00:00
Gregory P. Smith 2fe77060eb - 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().
2008-07-06 03:35:58 +00:00
Georg Brandl e78fbcce3e #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.
2008-07-05 10:13:36 +00:00
Georg Brandl 66ef83bd9d Give the pickle special methods a signature. 2008-07-04 17:22:53 +00:00
Benjamin Peterson 4e47680060 let the term be linked 2008-07-03 13:01:17 +00:00
Benjamin Peterson 9385b9db8b lowercase glossary term 2008-07-03 12:57:35 +00:00
Martin v. Löwis 8c43641271 Patch #1622: Correct interpretation of various ZIP header fields.
Also fixes
- Issue #1526: Allow more than 64k files to be added to Zip64 file.

- Issue #1746: Correct handling of zipfile archive comments (previously
  archives with comments over 4k were flagged as invalid). Allow writing
  Zip files with archives by setting the 'comment' attribute of a ZipFile.
2008-07-03 12:51:14 +00:00
Andrew M. Kuchling f5d2b4ce93 Tweak wording 2008-07-03 12:50:03 +00:00
Facundo Batista 66c527755d Issue #449227: Now with the rlcompleter module, callable objects are
added a '(' when completed.
2008-07-02 16:52:55 +00:00
Brett Cannon 8bb8fa5dd6 Handle urllib's renaming for Python 3.0:
* Deprecate urllib.urlopen() in favor of urllib2.urlopen() for 3.0.
* Update docs to mention split/rename of the module and deprecation of
  urlopen().

Changes to lib2to3 are in a separate commit. Work is for issue #2885.
2008-07-02 01:57:08 +00:00
Benjamin Peterson aac51b8a69 add ABC to the glossary 2008-07-01 23:33:06 +00:00
Georg Brandl 3214a01d27 #1410739: add a footnote about "is" and "unusual" behavior. 2008-07-01 20:50:02 +00:00
Georg Brandl 1e0eefc4a1 #1523853: add note about fread(). 2008-07-01 20:45:09 +00:00
Georg Brandl dbd0ae383d #3216: fix Execute's parameter description. 2008-07-01 20:18:10 +00:00
Georg Brandl 68b4e74a8d Add a link to PEP 324. 2008-07-01 19:59:00 +00:00
Benjamin Peterson a6a72923c7 write a short little section for multiprocessing; it still needs help 2008-07-01 19:51:54 +00:00
Benjamin Peterson b7b8bff532 reinstate the ending backtick. thanks Nick :) 2008-06-29 13:43:07 +00:00
Benjamin Peterson 6e4856a146 rewrap 2008-06-28 23:06:49 +00:00
Bill Janssen 934b16d0c2 various SSL fixes; issues 1251, 3162, 3212 2008-06-28 22:19:33 +00:00
Benjamin Peterson 77cec6ea23 fix typo 2008-06-28 13:18:14 +00:00
Benjamin Peterson 910c2ab674 edit multiprocessing docs 2008-06-27 23:22:06 +00:00
Raymond Hettinger ee51cffc95 Fix whitespace in example code. 2008-06-27 21:34:24 +00:00
Mark Dickinson df90ee6c5f Issue #3197: rework documentation for fractions module. 2008-06-27 16:49:27 +00:00
Benjamin Peterson b279b8a541 add a htmlview directive 2008-06-26 21:23:30 +00:00
Georg Brandl aa7c8bda63 Use newer versions of externals. 2008-06-26 21:12:55 +00:00
Georg Brandl 910df2fc4e Add a version tag for shutdown(). 2008-06-26 18:55:37 +00:00
Mark Dickinson cab7e56e84 Remove references to Py3k in __floor__, __ceil__ and __round__ documentation. 2008-06-24 15:35:14 +00:00
Mark Dickinson c72b787992 Change description of float('nan') feature; NaNs don't care much about
signs, and float('nan'), float('+nan') and float('-nan') actually all
generate the exact same NaN value.
2008-06-24 11:08:58 +00:00
Benjamin Peterson 2b917c93bc minor fix 2008-06-24 02:41:08 +00:00
Georg Brandl 3e8bb4e9b0 Write out "phi" consistently. 2008-06-22 19:07:59 +00:00
Georg Brandl 8bd05191fa #3085: Fix syntax error. 2008-06-22 18:11:52 +00:00
Georg Brandl 0ba92b24b7 Turn section references into proper cross-references. 2008-06-22 09:05:29 +00:00
Facundo Batista 74a6ba8f70 In the deprecated functions I added an alert to review
specially a section of the subprocess documentation
that helps with the replacing of those functionss.
2008-06-21 19:48:19 +00:00
Facundo Batista a6a4d50efe Now a from submitted via POST that also has a query string
will contain both FieldStorage and MiniFieldStorage items.

Fixes #1817.
2008-06-21 18:58:04 +00:00
Facundo Batista 2da91c375b Fixed issue #2888. Now the behaviour of pprint when working with nested
structures follows the common sense (and works like in 2.5 and 3.0).
2008-06-21 17:43:56 +00:00
Facundo Batista 8e1c52ac0e Reviewed and updated the documentation. Fixes #3017. 2008-06-21 17:30:06 +00:00
Georg Brandl 924b823a60 Documentation fix. 2008-06-21 14:26:19 +00:00
Andrew M. Kuchling db53c1eb68 Correct two versionchanged directives, to improve the 'changes' output 2008-06-21 00:17:22 +00:00
Andrew M. Kuchling 6ba873c134 Various items 2008-06-20 23:43:12 +00:00
Andrew M. Kuchling f839b66cf5 Grammar fixes 2008-06-20 23:14:32 +00:00
Andrew M. Kuchling c2e3270dcb Remove request for e-mail; it's unlikely these classes will be saved 2008-06-20 23:13:58 +00:00
Benjamin Peterson fc7f493738 rephrase 2008-06-20 20:33:33 +00:00
Georg Brandl f91c70a7bd Change references to the new math functions to generate proper x-refs. 2008-06-20 19:28:18 +00:00
Mark Dickinson d303578a66 Fix outdated count of the number of new math module functions. 2008-06-20 15:17:41 +00:00
Andrew M. Kuchling 7b2e2df740 Various items 2008-06-20 11:39:54 +00:00
Andrew M. Kuchling d6b1eaf428 Various items 2008-06-20 02:05:57 +00:00
Andrew M. Kuchling 8e5cd75b73 Put threading in front of thread 2008-06-19 20:33:31 +00:00
Andrew M. Kuchling be504f1795 Remove some standalone material from the introduction; various markup and typo fixes 2008-06-19 19:48:42 +00:00
Georg Brandl 5da652e374 Add versionadded tags to new math functions. 2008-06-18 09:28:22 +00:00
Mark Dickinson f88f739012 Typo fix 2008-06-18 09:20:17 +00:00
Georg Brandl 5c15aba870 Split the HTML index. 2008-06-17 09:01:35 +00:00
Andrew M. Kuchling 3730453edd Typo fixes 2008-06-13 19:38:18 +00:00
Georg Brandl 60c0be3acd Clarification. 2008-06-13 13:26:54 +00:00
Benjamin Peterson 26305a03e3 add py3k warnings to rfc822 2008-06-12 22:33:06 +00:00
Benjamin Peterson a03722f278 deprecated mimetools 2008-06-12 14:23:49 +00:00
Thomas Heller 41a9e15333 Markup fixes, thanks Georg for the help.
Document ctypes.util.find_library() and ctypes.util.find_msvcrt().
2008-06-11 19:58:22 +00:00
Thomas Heller c0a296f1dc Add versionadded marker to ctypes.c_longdouble. 2008-06-11 19:10:22 +00:00
Georg Brandl 89f48876a2 Add future_builtins.ascii(). 2008-06-11 18:55:38 +00:00
Thomas Heller 35b9020246 Smaller doc fixes. 2008-06-11 18:40:51 +00:00
Thomas Heller 2e9675adf8 More doc fixes. 2008-06-11 18:10:43 +00:00
Thomas Heller 81567d2b61 Markup fixes, spelling corrections, and better wordings. Hopefully. 2008-06-11 17:58:19 +00:00
Georg Brandl d987545d30 Clarify what ":errorhandler" refers to. 2008-06-11 17:57:44 +00:00
Georg Brandl 9cf1934090 Fix typos. 2008-06-11 17:53:38 +00:00
Benjamin Peterson f439560265 add aliases to threading module 2008-06-11 17:50:00 +00:00
Benjamin Peterson 0fbcf69455 give the threading API PEP 8 names 2008-06-11 17:27:50 +00:00
Andrew M. Kuchling a809c98ca5 Note PEP 371 section 2008-06-11 12:53:14 +00:00
Raymond Hettinger 4267be6478 Multi-arg form for set.difference() and set.difference_update(). 2008-06-11 10:30:54 +00:00
Thomas Heller 73baefd7fc Fix markup.
Document the new 'offset' parameter for the 'ctypes.byref' function.
2008-06-11 07:10:43 +00:00
Benjamin Peterson 190d56e009 add the multiprocessing package to fulfill PEP 371 2008-06-11 02:40:25 +00:00
Raymond Hettinger 363070aa46 Update numbers doc for the Integral simplification. 2008-06-11 00:28:51 +00:00
Armin Ronacher 482f31299c Documented the new AST constructor. 2008-06-10 20:52:19 +00:00
Armin Ronacher 3079be51af Fix a formatting error in the ast documentation. 2008-06-10 20:37:02 +00:00
Georg Brandl 60977c73c5 more markup fix. 2008-06-10 13:53:24 +00:00
Benjamin Peterson 0099e72099 fix markup 2008-06-10 13:37:13 +00:00
Georg Brandl 8509db5a21 Add the "ast" module, containing helpers to ease use of the "_ast" classes. 2008-06-10 07:45:28 +00:00
Josiah Carlson 1a72d88abf Applying updated patch from Issue 1736190, which addresses partial
issues in: 909005 and 17361001, as well as completely as possible issues
539444, 760475, 777588, 889153, 953599, 1025525, 1063924, and 658749.
This patch also includes doc and test updates as necessary.
2008-06-10 05:00:08 +00:00
Raymond Hettinger 5c4d3d0e4c Let set.intersection() and set.intersection_update() take multiple input arguments. 2008-06-09 13:07:27 +00:00
Raymond Hettinger ee4bcad68e Let set.union() and set.update() accept multiple inputs. 2008-06-09 08:33:37 +00:00
Raymond Hettinger ecbdd2e9b0 Issue #2138: Add math.factorial(). 2008-06-09 06:54:45 +00:00
Gregory P. Smith dd96db63f6 This reverts r63675 based on the discussion in this thread:
http://mail.python.org/pipermail/python-dev/2008-June/079988.html

Python 2.6 should stick with PyString_* in its codebase.  The PyBytes_* names
in the spirit of 3.0 are available via a #define only.  See the email thread.
2008-06-09 04:58:54 +00:00
Raymond Hettinger e98839a1f4 Issue3065: Fixed pickling of named tuples. Added tests. 2008-06-09 01:28:30 +00:00
Georg Brandl 3219df1562 Argh, I read it wrong. Reverted 64036 and added a clarifying remark. 2008-06-08 08:59:38 +00:00
Georg Brandl ebd662d6f2 #3028: tokenize passes the physical line. 2008-06-08 08:54:40 +00:00
Benjamin Peterson 1f1174edf3 capitalization nit 2008-06-07 20:44:48 +00:00
Georg Brandl 9cea511f9b Document the "st" API, to avoid confusion with the "new" AST.
Add a note about using the new AST module.
2008-06-07 18:17:37 +00:00
Georg Brandl 5f27af055b X-ref to numbers module. 2008-06-07 18:16:12 +00:00
Georg Brandl afd05da314 Backport docs for abc module to 2.6. 2008-06-07 17:11:00 +00:00
Georg Brandl bf0610a1ca Revert unwanted changes. 2008-06-07 16:04:01 +00:00
Georg Brandl 7be19aabe2 Factor out docstring dedenting from inspect.getdoc() into inspect.cleandoc()
to ease standalone use of the algorithm.
2008-06-07 15:59:10 +00:00
Thomas Heller 3f67c43f78 Document the new ctypes features.
It would be great if someone could review both sematics, markup, and
spelling, and correct the versionadded and versionchanges markers.
2008-06-06 20:05:15 +00:00
Thomas Heller fb0117e9d5 Add a reminder for the maintainer of whatsnew. 2008-06-06 18:42:11 +00:00
Georg Brandl d82a9c1618 Fix brackets. 2008-06-06 10:43:43 +00:00
Georg Brandl d77554fe8c Markup fix. 2008-06-06 07:34:50 +00:00
Andrew M. Kuchling 5e3e6ba81d Grammar fix 2008-06-05 23:35:48 +00:00
Andrew M. Kuchling b5a40dd224 Add various items 2008-06-05 23:35:31 +00:00
Andrew M. Kuchling 6dd8ccab2c Document 'utc' parameter 2008-06-05 23:33:54 +00:00
Ronald Oussoren 5640ce2f1e MacOS X: Enable 4-way universal builds
This patch adds a new configure argument on OSX:
        --with-universal-archs=[32-bit|64-bit|all]

When used with the --enable-universalsdk option this controls which
CPU architectures are includes in the framework. The default is 32-bit,
meaning i386 and ppc. The most useful alternative is 'all', which includes
all 4 CPU architectures supported by MacOS X (i386, ppc, x86_64 and ppc64).

This includes limited support for the Carbon bindings in 64-bit mode as well,
limited because (a) I haven't done extensive testing and (b) a large portion
of the Carbon API's aren't available in 64-bit mode anyway.

I've also duplicated a feature of Apple's build of python: setting the
environment variable 'ARCHFLAGS' controls the '-arch' flags used for building
extensions using distutils.
2008-06-05 12:58:24 +00:00
Georg Brandl a2b34b87a9 Complete revision of new turtle module's docs. 2008-06-04 11:17:26 +00:00
Martin v. Löwis 8718459f0f Patch #1513695: New turtle module, with demos. 2008-06-04 06:29:55 +00:00
Martin v. Löwis ffe62ed46d Patch #2125: Add GetInteger and GetString methods for
msilib.Record objects.
2008-06-02 08:40:06 +00:00
Gregory P. Smith 8856ddae25 Adds a Thread.getIdent() method to provide the _get_ident() value for
any given threading.Thread object.  feature request issue 2871.
2008-06-01 23:48:47 +00:00
Georg Brandl ac19d85e04 Deprecate htmllib and sgmllib for 3.0. 2008-06-01 21:19:14 +00:00