summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* whatsnew: hmac *digestmod* accepts strings, and default is deprecated. (#17276)R David Murray2014-03-092-4/+16
|
* whatsnew: tidy up html notes, add porting note for expand_charrefs.R David Murray2014-03-091-9/+15
|
* whatsnew: glob.escape.R David Murray2014-03-091-0/+8
|
* whatsnew: base65 encodings. (#17618)R David Murray2014-03-082-13/+27
| | | | | | | | Also updated the base64 module title and introduction to adjust for the fact that these new encodings are included. Also adjusted the wording about the base64 alphabets (see issue #20837).
* whatsnew: dbm.open is context manager. (#19282)R David Murray2014-03-081-0/+9
|
* whatsnew: sunau/aifc/wave writeframes[raw] accept any bytes-like (#8311)R David Murray2014-03-084-7/+19
|
* whatsnew: Wave_write handles unseekable files. (#5202)R David Murray2014-03-082-6/+29
| | | | Also clarify the documentation of this feature.
* Improve descriptions of introspection changesNick Coghlan2014-03-084-8/+59
| | | | | | | | | Several of the introspection changes in Python 3.4 are indirect, where inspect module changes affected pydoc, and those in turn affected the help builtin. This update adds versionchanged notes in the key locations, as well as more coverage in the What's New document (in particular, a note in the porting section regarding the expanded domain for inspect.getfullargspec).
* whatsnew: audioop accepts any bytes-like, rejects strings.R David Murray2014-03-082-5/+10
|
* whatsnew: inet_pton/inet_ntop support windows (#7171).R David Murray2014-03-082-0/+9
| | | | Added versionchanged to docs.
* whatsnew: sunau supports 24 bit samples.R David Murray2014-03-081-0/+4
|
* whatsnew: cp273 codec (#10907797)R David Murray2014-03-082-0/+7
| | | | | Also updated the docs and added the aliases mentioned by the references.
* whatsnew: get[status|output] works on windows.R David Murray2014-03-081-0/+4
| | | | Since 3.3.4.... :(
* #10197: Update get[status]output versionchanged with actual version.R David Murray2014-03-081-4/+8
|\ | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :(
| * #10197: Update get[status]output versionchanged with actual version.R David Murray2014-03-081-4/+8
| | | | | | | | | | | | | | | | | | | | | | This was perhaps on the border between a bug fix and a feature since the Python3 docs did not originally say it was unix only. However, the functions never worked anywhere but unix, and the docs were changed to say it was unix only well before the windows support was added. Unfortunately, windows support was added in 3.3.4 as well as 3.4. That leaves us in the uncomfortable position of needing the tag to say "version changed: 3.3.4" :(
| * Issue #20813: Backport Python 2/3 HOWTO updatesBrett Cannon2014-03-071-380/+259
| |
* | Issue #20812: Add a short opener to the Python 2/3 porting HOWTO.Brett Cannon2014-03-071-1/+30
| | | | | | | | Thanks to Nick Coghlan for the suggestion.
* | whatsnew: note in deprecation section about html.parser strict.R David Murray2014-03-061-0/+2
| |
* | whatsnew: rewrite resource entry: prlimit and new constants.R David Murray2014-03-061-2/+15
| |
* | whatsnew: ipaddress is_globalR David Murray2014-03-062-5/+17
| | | | | | | | | | Also tweaked the docs a bit and added the missing entry for the ipv6 is_global.
* | whatsnew: improve PyZipFile filterfuc entry, and its docs (#19274).R David Murray2014-03-052-10/+26
| |
* | whatsnew: tweak a couple importlib porting notes.R David Murray2014-03-031-8/+7
| | | | | | | | | | | | | | | | I had missed that there was already an entry for the Frozen package change, so I combined mine with the existing one. Also added the info about the reload change to the entry for the other changes to reload, but I'm missing an issue number for the rest of the attribute behavior changes so I left myself an XXX as a reminder to find it.
* | whatsnew: Windows build uses ASLR and DEP.R David Murray2014-03-031-0/+5
| |
* | Close #20839: pkgutil.find_loader now uses importlib.util.find_specNick Coghlan2014-03-041-8/+9
| |
* | Issue20653: fix ReST for EnumEthan Furman2014-03-031-10/+10
| |
* | Close issue20653: improve functional API docs; minor code changesEthan Furman2014-03-031-0/+34
| |
* | Close #20814: doc: Fix "Pretty top" example of tracemallocVictor Stinner2014-03-031-3/+2
| |
* | whatsnew: add some issue number annotations.R David Murray2014-03-021-4/+7
| | | | | | | | | | | | Add issue number to tick_counter, PyOS_ReadlineFunctionPointer, marshal optimizations (add Antoine's contribution to the entry under the marshal module), and absolute paths in __file__.
* | whatsnew: memoryview is Sequence and supports Reversed.R David Murray2014-03-011-0/+4
| |
* | whatsnew: unittest discover works on namespace packages (#17457).R David Murray2014-03-012-9/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I also added the docs that never got committed, editing the patch provided by Claudiu. I collapsed the now three versionchanged directives for discovery into one. I tried several different styles for this. The most obvious is a bulleted list, but currently the only way I could find to produce that is to have *something* appear on the versionchanged line after the colon, which combined with the blank space before the bulleted list just looks wrong. I also tried the current single-line-three-sentences version with bullet characters before each sentence, and I almost went with that as it made it clear that the three sentences are independent. But I decided to just go with the sentences for simplicity reasons.
* | whatsnew: give Serhiy credit for audioop 24-bit sample support.R David Murray2014-02-281-1/+2
| |
* | whatsnew: compression libraries support 'x' mode.R David Murray2014-02-281-0/+4
| |
* | whatsnew: tarfile stat constants removal.R David Murray2014-02-271-0/+3
| |
* | whatsnew: return types of re functions.R David Murray2014-02-271-0/+7
| |
* | #16135: remove mentions of OS/2 from the documentationAndrew Kuchling2014-03-015-17/+4
| |
* | Issue #20650: Tweak some awkward wording.Brett Cannon2014-02-281-2/+2
| |
* | whatsnew: fix textwrap/shorten entry, and improve the related docs.R David Murray2014-02-272-30/+27
| | | | | | | | | | | | | | I had incorrectly added back the shorten method when I initially made the whatsnew entry, but the shorten function docs were not correct according to the code. I also improved the wording in general.
* | whatsnew: expand pbkdf2_hmac entry slightly.R David Murray2014-02-261-2/+4
| |
* | whatsnew: reformat pdb entry to match style of most other module entries.R David Murray2014-02-261-10/+8
| | | | | | | | That is: one paragraph per feature.
* | whatsnew: reword the contextlib.redirect_stdout entry for increased clarity.R David Murray2014-02-261-5/+9
| |
* | whatsnew: attribute base64 memoryview change to Nick.R David Murray2014-02-261-1/+2
| |
* | whatsnew: pprint's compact option.R David Murray2014-02-261-3/+7
| |
* | Merge with 3.3Zachary Ware2014-02-263-8/+7
|\ \ | |/
| * Fix several C-API doc typos caught by tomo cocoa on docs@.Zachary Ware2014-02-263-9/+8
| | | | | | | | | | The signature and description of PyException_SetCause now use "cause" rather than "ctx" to match the code.
* | Close #20759: Fix some typos in the mock docs. (Merge with 3.3)Zachary Ware2014-02-262-3/+3
|\ \ | |/
| * Issue #20759: Fix some typos in the mock docs.Zachary Ware2014-02-262-3/+3
| |
* | whatsnew: DynanicClassAttribute (#19030), Py_SetStandardStreamEncoding (#16129)R David Murray2014-02-252-0/+38
| | | | | | | | | | Adding missing docs for DynamicClassAttribute by copying the docstring. The doc entry could stand some expansion, which I will note on the issue.
* | Issue #20765: Add missing documentation for PurePath.with_name() and ↵Antoine Pitrou2014-02-251-0/+30
| | | | | | | | PurePath.with_suffix().
* | whatsnew: encoding is now optional in PYTHONIOENCODING (#18818)R David Murray2014-02-251-0/+5
| |
* | whatsnew: logging SocketHandler and DatagramHandler support Unix domain sockets.R David Murray2014-02-251-0/+5
| |