summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dirGregory P. Smith2015-05-222-3/+41
| | | | parameters and returns bytes in such situations (matching the os module APIs).
* Issue #23955: Add pyvenv.cfg option to suppress registry/environment lookup ↵Steve Dower2015-05-221-3/+18
| | | | | | for generating sys.path. Also cleans up and secures getpathp.c
* Issue 20438: Add a note about deprecating old inspect APIs to whatsnew.Yury Selivanov2015-05-222-2/+29
| | | | | | | | | | | | | | | | Also, deprecate formatargspec, formatargvalues, and getargvalues functions. Since we are deprecating 'getfullargspec' function in 3.5 (documentation only, no DeprecationWarning), it makes sense to also deprecate functions designed to be directly used with it. In 3.6 we will remove 'getargsspec' function (was deprecated since Python 3.0), and start raising DeprecationWarnings in other 'getarg*' family of functions. We can remove them in 3.7 or later. Also, it is worth noting, that Signature API does not provide 100% of functionality that deprecated APIs have. It is important to do a soft deprecation of outdated APIs in 3.5 to gather users feedback, and improve Signature object.
* Preliminary typing.py, anticipating provisional acceptance of PEP 484.Guido van Rossum2015-05-221-0/+15
| | | | | | | | | | | There area bunch of TODOs here, but the biggest (not mentioned in the file) is that I'm going to take out __instancecheck__ and __subclasscheck__. However my personal schedule is such that I probably won't have time for these before Larry tags beta 1. But I will try -- this commit is mostly to make sure that typing.py doesn't completely miss the train. PS. I'm tracking issues at https://github.com/ambv/typehinting/issues.
* Fix extraneous BOM in whatsnew.Zachary Ware2015-05-221-1/+1
| | | | That's what I get for using Notepad to make a quick edit...
* Issue #20035: Reimplement tkinter._fix module as a C function.Zachary Ware2015-05-221-1/+9
| | | | | The new private C function makes no permanent changes to the environment and is #ifdef'd out on non-Windows platforms.
* Issue 20438: Deprecate inspect.getargspec() and friends.Yury Selivanov2015-05-221-6/+7
|
* docs: Mention PEP 479 in whatsnew.Yury Selivanov2015-05-221-0/+21
| | | | Issue 22906.
* Issue 24180: Fixes by Berker Peksag.Yury Selivanov2015-05-214-23/+7
|
* Issue 24180: Documentation for PEP 492 changes.Yury Selivanov2015-05-2111-8/+483
|
* improve wordingBenjamin Peterson2015-05-211-2/+2
|
* Issue 24248: Deprecate inspect.Signature.from_function and .from_builtinYury Selivanov2015-05-211-0/+5
|
* Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable.Yury Selivanov2015-05-202-4/+13
|
* #19662: fix typoR David Murray2015-05-191-1/+1
|
* Issue #24232: Fix typos. Patch by Ville Skyttä.Berker Peksag2015-05-185-5/+5
|\
| * Issue #24232: Fix typos. Patch by Ville Skyttä.Berker Peksag2015-05-184-4/+4
| |
* | Issue #24233: Add a proper link to socket.getfqdn() documentation.Berker Peksag2015-05-181-1/+1
|\ \ | |/ | | | | Patch by Ville Skyttä.
| * Issue #24233: Add a proper link to socket.getfqdn() documentation.Berker Peksag2015-05-181-1/+1
| | | | | | | | Patch by Ville Skyttä.
* | Issue #13866: add *quote_via* argument to urlencode.R David Murray2015-05-182-4/+20
| | | | | | | | | | Patch by samwyse, completed by Arnon Yaari, and reviewed by Martin Panter.
* | #24211: Add missing docs for SMTPUTF8 policy instance.R David Murray2015-05-171-0/+8
| |
* | #24218: Add SMTPUTF8 support to send_message.R David Murray2015-05-172-4/+14
| | | | | | | | Reviewed by Maciej Szulik.
* | Merge with 3.4Terry Jan Reedy2015-05-172-22/+53
|\ \ | |/
| * Issue #22155: Add File Handlers subsection with createfilehandler to tkinterTerry Jan Reedy2015-05-172-22/+53
| | | | | | | | doc. Remove obsolete example from FAQ. Patch by Martin Panter.
* | #20098: add mangle_from_ policy option.R David Murray2015-05-172-0/+33
| | | | | | | | | | | | | | This defaults to True in the compat32 policy for backward compatibility, but to False for all new policies. Patch by Milan Oberkirch, with a few tweaks.
* | #24211: Add RFC6532 support to the email library.R David Murray2015-05-172-0/+14
| | | | | | | | | | | | | | | | | | This could use more edge case tests, but the basic functionality is tested. (Note that this changeset does not add tailored support for the RFC 6532 message/global MIME type, but the email package generic facilities will handle it.) Reviewed by Maciej Szulik.
* | Merge: #24216: fix typoR David Murray2015-05-171-1/+1
|\ \ | |/
| * #24216: fix typoR David Murray2015-05-171-1/+1
| |
* | Add versionadded directive for BoundArguments.apply_defaults().Berker Peksag2015-05-161-0/+2
| |
* | #21083: add get_content_disposition method to email.message.R David Murray2015-05-162-0/+17
| | | | | | | | Patch by Abhilash Raj.
* | Issue #16314: Added support for the LZMA compression in distutils.Serhiy Storchaka2015-05-164-32/+58
| |
* | #21804: Add RFC 6856 (UTF8) support to poplib.R David Murray2015-05-162-0/+16
| | | | | | | | Patch by Milan Oberkirch.
* | #19662: Make requirement to support arbitrary keywords explicit.R David Murray2015-05-161-0/+4
| | | | | | | | | | | | | | | | When not using decode_data=True, smtpd may provide keyword arguments to the process_message user-implemented method. This doc update is intended to make it clear that arbitrary keywords must be supported, so that we can add additional features in the future by just adding keywords to the process_message call.
* | #22027: Add RFC6531 support to smtplib.R David Murray2015-05-162-1/+37
| | | | | | | | Initial patch by Milan Oberkirch.
* | Issue 24190: Add inspect.BoundArguments.apply_defaults() method.Yury Selivanov2015-05-162-21/+23
| |
* | Issue #20182: converted the signal module to use Argument ClinicTal Einat2015-05-161-6/+6
| |
* | Argument Clinic: added missing bit of info in howtoTal Einat2015-05-161-0/+1
| |
* | Issue #24064: Docuement that oroperty docstrings are now writeable.Raymond Hettinger2015-05-151-0/+3
| |
* | Closes #24013: Improve os.scandir() and DirEntry documentationVictor Stinner2015-05-151-71/+69
| | | | | | | | Patch written by Ben Hoyt.
* | os module doc: remove availability when uselessVictor Stinner2015-05-151-58/+0
| | | | | | | | | | Remove "Availability: Unix, Windows." from os module documentation for functions available on all platforms.
* | Issue 24191: Document BoundArguments.signatureYury Selivanov2015-05-141-0/+4
|\ \ | |/
| * Issue 24191: Document BoundArguments.signatureYury Selivanov2015-05-141-0/+4
| |
* | Merge: Make sentence correct English.R David Murray2015-05-141-1/+1
|\ \ | |/
| * Make sentence correct English.R David Murray2015-05-141-1/+1
| |
* | Merge: #23088: Clarify null termination of bytes and strings in C API.R David Murray2015-05-143-31/+44
|\ \ | |/
| * #23088: Clarify null termination of bytes and strings in C API.R David Murray2015-05-143-31/+44
| | | | | | | | Patch by Martin Panter, reviewed by Serhiy Storchaka and R. David Murray.
* | mergeRaymond Hettinger2015-05-131-2/+2
|\ \ | |/
| * Fix mangled wordingRaymond Hettinger2015-05-131-2/+2
| |
* | remove extra spaceBenjamin Peterson2015-05-131-2/+2
| |
* | remove % from title, since it makes latex barfBenjamin Peterson2015-05-131-2/+2
| |
* | mergeRaymond Hettinger2015-05-131-3/+3
|\ \ | |/