Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Sphinx warnings. | Berker Peksag | 2015-05-23 | 1 | -0/+1 |
| | |||||
* | Merge with 3.4 | Terry Jan Reedy | 2015-05-23 | 1 | -1/+1 |
|\ | |||||
| * | Make expression legal python by adding '1'. | Terry Jan Reedy | 2015-05-23 | 1 | -1/+1 |
| | | |||||
* | | Issue #24204: Elaborate of the str.strip() documentation. | Raymond Hettinger | 2015-05-23 | 1 | -0/+10 |
| | | |||||
* | | Issue #24269: Minor doc fixups. | Raymond Hettinger | 2015-05-23 | 1 | -5/+6 |
| | | |||||
* | | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 1 | -9/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Known limitations of the current implementation: - documentation changes are incomplete - there's a reference leak I haven't tracked down yet The leak is most visible by running: ./python -m test -R3:3 test_importlib However, you can also see it by running: ./python -X showrefcount Importing the array or _testmultiphase modules, and then deleting them from both sys.modules and the local namespace shows significant increases in the total number of active references each cycle. By contrast, with _testcapi (which continues to use single-phase initialisation) the global refcounts stabilise after a couple of cycles. | ||||
* | | Issue #23086: Add start and stop arguments to the Sequence.index() mixin method. | Raymond Hettinger | 2015-05-23 | 1 | -0/+14 |
| | | |||||
* | | Issue 24230: The tempfile module now accepts bytes for prefix, suffix and dir | Gregory P. Smith | 2015-05-22 | 1 | -2/+35 |
| | | | | | | | | parameters and returns bytes in such situations (matching the os module APIs). | ||||
* | | Issue 20438: Add a note about deprecating old inspect APIs to whatsnew. | Yury Selivanov | 2015-05-22 | 1 | -2/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Rossum | 2015-05-22 | 1 | -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. | ||||
* | | Issue 20438: Deprecate inspect.getargspec() and friends. | Yury Selivanov | 2015-05-22 | 1 | -6/+7 |
| | | |||||
* | | Issue 24180: Fixes by Berker Peksag. | Yury Selivanov | 2015-05-21 | 2 | -8/+5 |
| | | |||||
* | | Issue 24180: Documentation for PEP 492 changes. | Yury Selivanov | 2015-05-21 | 4 | -3/+105 |
| | | |||||
* | | Issue 20691: Add follow_wrapped arg to inspect.signature/from_callable. | Yury Selivanov | 2015-05-20 | 1 | -4/+10 |
| | | |||||
* | | #19662: fix typo | R David Murray | 2015-05-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #24232: Fix typos. Patch by Ville Skyttä. | Berker Peksag | 2015-05-18 | 3 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #24232: Fix typos. Patch by Ville Skyttä. | Berker Peksag | 2015-05-18 | 2 | -2/+2 |
| | | |||||
* | | Issue #24233: Add a proper link to socket.getfqdn() documentation. | Berker Peksag | 2015-05-18 | 1 | -1/+1 |
|\ \ | |/ | | | | | Patch by Ville Skyttä. | ||||
| * | Issue #24233: Add a proper link to socket.getfqdn() documentation. | Berker Peksag | 2015-05-18 | 1 | -1/+1 |
| | | | | | | | | Patch by Ville Skyttä. | ||||
* | | Issue #13866: add *quote_via* argument to urlencode. | R David Murray | 2015-05-18 | 1 | -4/+16 |
| | | | | | | | | | | Patch by samwyse, completed by Arnon Yaari, and reviewed by Martin Panter. | ||||
* | | #24211: Add missing docs for SMTPUTF8 policy instance. | R David Murray | 2015-05-17 | 1 | -0/+8 |
| | | |||||
* | | #24218: Add SMTPUTF8 support to send_message. | R David Murray | 2015-05-17 | 1 | -2/+10 |
| | | | | | | | | Reviewed by Maciej Szulik. | ||||
* | | Merge with 3.4 | Terry Jan Reedy | 2015-05-17 | 1 | -0/+50 |
|\ \ | |/ | |||||
| * | Issue #22155: Add File Handlers subsection with createfilehandler to tkinter | Terry Jan Reedy | 2015-05-17 | 1 | -0/+50 |
| | | | | | | | | doc. Remove obsolete example from FAQ. Patch by Martin Panter. | ||||
* | | #20098: add mangle_from_ policy option. | R David Murray | 2015-05-17 | 1 | -0/+27 |
| | | | | | | | | | | | | | | 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 Murray | 2015-05-17 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | 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 typo | R David Murray | 2015-05-17 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #24216: fix typo | R David Murray | 2015-05-17 | 1 | -1/+1 |
| | | |||||
* | | Add versionadded directive for BoundArguments.apply_defaults(). | Berker Peksag | 2015-05-16 | 1 | -0/+2 |
| | | |||||
* | | #21083: add get_content_disposition method to email.message. | R David Murray | 2015-05-16 | 1 | -0/+9 |
| | | | | | | | | Patch by Abhilash Raj. | ||||
* | | #21804: Add RFC 6856 (UTF8) support to poplib. | R David Murray | 2015-05-16 | 1 | -0/+9 |
| | | | | | | | | Patch by Milan Oberkirch. | ||||
* | | #19662: Make requirement to support arbitrary keywords explicit. | R David Murray | 2015-05-16 | 1 | -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 Murray | 2015-05-16 | 1 | -1/+34 |
| | | | | | | | | Initial patch by Milan Oberkirch. | ||||
* | | Issue 24190: Add inspect.BoundArguments.apply_defaults() method. | Yury Selivanov | 2015-05-16 | 1 | -21/+20 |
| | | |||||
* | | Issue #20182: converted the signal module to use Argument Clinic | Tal Einat | 2015-05-16 | 1 | -6/+6 |
| | | |||||
* | | Issue #24064: Docuement that oroperty docstrings are now writeable. | Raymond Hettinger | 2015-05-15 | 1 | -0/+3 |
| | | |||||
* | | Closes #24013: Improve os.scandir() and DirEntry documentation | Victor Stinner | 2015-05-15 | 1 | -71/+69 |
| | | | | | | | | Patch written by Ben Hoyt. | ||||
* | | os module doc: remove availability when useless | Victor Stinner | 2015-05-15 | 1 | -58/+0 |
| | | | | | | | | | | Remove "Availability: Unix, Windows." from os module documentation for functions available on all platforms. | ||||
* | | Issue 24191: Document BoundArguments.signature | Yury Selivanov | 2015-05-14 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue 24191: Document BoundArguments.signature | Yury Selivanov | 2015-05-14 | 1 | -0/+4 |
| | | |||||
* | | Merge: Make sentence correct English. | R David Murray | 2015-05-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Make sentence correct English. | R David Murray | 2015-05-14 | 1 | -1/+1 |
| | | |||||
* | | merge | Raymond Hettinger | 2015-05-13 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix mangled wording | Raymond Hettinger | 2015-05-13 | 1 | -2/+2 |
| | | |||||
* | | merge | Raymond Hettinger | 2015-05-13 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #19934: Document *None* as an acceptable input to ↵ | Raymond Hettinger | 2015-05-13 | 1 | -3/+3 |
| | | | | | | | | Counter.most_common([n]) | ||||
* | | Issue #23695: Explain the zip() example for clustering a data series into ↵ | Raymond Hettinger | 2015-05-13 | 1 | -1/+3 |
| | | | | | | | | n-length groups. | ||||
* | | Issue #1322: platform.dist() and platform.linux_distribution() functions are ↵ | Berker Peksag | 2015-05-13 | 1 | -0/+4 |
| | | | | | | | | | | | | now deprecated. Initial patch by Vajrasky Kok. | ||||
* | | Issue #24064: Add __doc__ to the example in collections.rst. | Berker Peksag | 2015-05-13 | 1 | -3/+3 |
| | | |||||
* | | Issue #24064: Property() docstrings are now writeable. | Raymond Hettinger | 2015-05-13 | 1 | -0/+9 |
| | | | | | | | | (Patch by Berker Peksag.) |