Commit graph

20163 commits

Author SHA1 Message Date
Lars Gustäbel
521dfb02dd Add missing versionchanged information. 2011-12-12 10:22:56 +01:00
Victor Stinner
bf6e560d0c Make PyUnicode_Copy() private => _PyUnicode_Copy()
Undocument the function.

Make also decode_utf8_errors() as private (static).
2011-12-12 01:53:47 +01:00
Benjamin Peterson
8bbe788deb merge heads 2011-12-10 17:55:31 -05:00
Benjamin Peterson
2122cf717f alias resource.error to OSError 2011-12-10 17:50:22 -05:00
Lars Gustäbel
0a9dd2f11d Issue #5689: Add support for lzma compression to the tarfile module. 2011-12-10 20:38:14 +01:00
Lars Gustäbel
c67c0b0db1 Merge with 3.2: Fix doc typo. 2011-12-10 12:48:03 +01:00
Florent Xicluna
67317750af Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarning (cgi, importlib, nntplib, smtpd). 2011-12-10 11:07:42 +01:00
Antoine Pitrou
a9e9abb8ef Issue #13528: rework the performance question in the programming FAQ 2011-12-09 23:11:16 +01:00
Florent Xicluna
1b7458b2a1 Closes #2979: add parameter 'use_builtin_types' to the SimpleXMLRPCServer. 2011-12-09 22:35:06 +01:00
Nadeem Vawda
3459922c1b What's New in Python 3.3: Add entry for lzma module (issue #6715). 2011-12-09 01:32:46 +02:00
Victor Stinner
b6821013df Document PyUnicode_Copy() and PyUnicode_EncodeCodePage() 2011-12-09 00:18:11 +01:00
Victor Stinner
d1be878d7b What's New in Python 3.3: Add a Deprecated section 2011-12-09 00:10:41 +01:00
Antoine Pitrou
38d9643d5e Issue #13464: Add a readinto() method to http.client.HTTPResponse.
Patch by Jon Kuhn.
2011-12-06 22:33:57 +01:00
Antoine Pitrou
3731142e19 Merge assorted fixes from 3.2 2011-12-05 01:47:40 +01:00
Antoine Pitrou
9b1ec97867 Remove reference to the base64 encoding. 2011-12-05 01:22:03 +01:00
Antoine Pitrou
b53e2c4900 The functional module hasn't been maintained since 2006 and doesn't work with Python 3.
Remove section about it from the functional programming FAQ.
2011-12-05 01:05:55 +01:00
Antoine Pitrou
6da394cfe7 Remove obsolete references to bsddb 2011-12-05 00:41:51 +01:00
Antoine Pitrou
d0784b75cb Issue #13527: remove mention of Python megawidgets and Tkinter3000 WCK
from the doc. These two projects appear dead.
2011-12-04 23:57:55 +01:00
Georg Brandl
4d5232ab8a Merge with 3.2. 2011-12-04 11:51:33 +01:00
Antoine Pitrou
090d8132b5 Merge from 3.2 2011-12-03 23:10:12 +01:00
Antoine Pitrou
61fed9ccd3 Merge from 3.2 2011-12-03 22:40:23 +01:00
Antoine Pitrou
b6032f55d2 Remove outdated FAQ content 2011-12-03 22:26:01 +01:00
Antoine Pitrou
3cb369dd0a Streamline FAQ entry about the ternary operator, and suggest using io.StringIO for a mutable unicode container. 2011-12-03 22:11:45 +01:00
Antoine Pitrou
73080b8d18 Remove references to psyco, which is mostly unmaintained and doesn't work with Python 3. 2011-12-03 21:25:17 +01:00
Antoine Pitrou
7dc0047d53 Merge doc fixes from 3.2 2011-12-03 21:07:50 +01:00
Meador Inge
80c219b5e7 Issue #13513: IOBase docs incorrectly link to the readline module 2011-12-03 12:50:18 -06:00
Éric Araujo
fe0472e7de Fix glitches in email.policy docs (#12208) 2011-12-03 16:00:56 +01:00
Jason R. Coombs
c9b644eac2 Merge fix for Issue #12666 from 3.2 2011-12-03 08:59:53 -05:00
Ezio Melotti
c42512dfc6 #13494: merge with 3.2. 2011-12-02 19:49:02 +02:00
Ezio Melotti
a9a2ddf7be #13499: merge with 3.2. 2011-12-02 19:29:10 +02:00
Victor Stinner
3ba82aa765 c-api: Replace PyUnicodeObject* by PyObject* in "U" format doc 2011-12-01 02:52:55 +01:00
Antoine Pitrou
97ba26bf72 Issue #1040439: better document how to compile and link an embedded Python interpreter.
Still lacks docs for Windows (anyone?).
2011-11-30 21:20:01 +01:00
Nadeem Vawda
3ff069ebc6 Issue #6715: Add module for compression using the LZMA algorithm. 2011-11-30 00:25:06 +02:00
Antoine Pitrou
7b578b3d89 Mention hashable memoryviews, and reformat. 2011-11-29 22:47:11 +01:00
Antoine Pitrou
0599b5b2a1 Add subheaders to make PEP 393 description clearer 2011-11-29 22:45:07 +01:00
Éric Araujo
c8e032006a Merge 3.2 2011-11-29 17:14:27 +01:00
Victor Stinner
0fdfceb782 Issue #12567: The curses module uses Unicode functions for Unicode arguments
when it is linked to the ncurses library. It encodes also Unicode strings to
the locale encoding instead of UTF-8.
2011-11-25 22:10:02 +01:00
Antoine Pitrou
e7ede06757 Typo 2011-11-25 19:11:26 +01:00
Antoine Pitrou
6bbd76b0a0 Update What's new for PEP 3155 2011-11-25 19:10:05 +01:00
Antoine Pitrou
86a36b500a PEP 3155 / issue #13448: Qualified name for classes and functions. 2011-11-25 18:56:07 +01:00
Antoine Pitrou
e333d00d3a Clarify concatenation behaviour of immutable strings, and remove explicit
mention of the CPython optimization hack.
2011-11-25 16:34:23 +01:00
Eli Bendersky
0481f4bca4 fix some typos in Doc/c-api/memoryview.rst 2011-11-25 15:08:45 +02:00
Petri Lehtinen
61ea8a0d28 Add a "What's New" entry for #12170 2011-11-24 22:00:46 +02:00
Vinay Sajip
d2b0217944 Merged documentation addition from 3.2. 2011-11-23 14:29:01 +00:00
Vinay Sajip
ce378d1945 Closes #13459: Merged fix from 3.2. 2011-11-23 08:55:59 +00:00
Amaury Forgeot d'Arc
942d5ba125 Merge branch 3.2 2011-11-22 22:02:01 +01:00
Giampaolo Rodola'
bc7ea5872b fix wrong credit and issue id given in previous commit 2011-11-22 13:37:58 +01:00
Giampaolo Rodola'
be55d99b3d Fix 13245:
sched.scheduler class constructor's timefunc and delayfunct parameters are now optional.
scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter.

Patch contributed by Matt Mulsow.
2011-11-22 13:33:34 +01:00
Antoine Pitrou
ce4a9da705 Issue #13411: memoryview objects are now hashable when the underlying object is hashable. 2011-11-21 20:46:33 +01:00
Victor Stinner
a996f1e1a0 What's new in Python 3.3: Rephrase PEP 393 doc 2011-11-21 13:14:43 +01:00