Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge #14640: Fix typos/syntax in pyporting.rst. | R David Murray | 2012-04-23 | 1 | -5/+5 |
|\ | | | | | | | Patch by Dionysios Kalofonos. | ||||
| * | #14640: Fix typos/syntax in pyporting.rst. | R David Murray | 2012-04-23 | 1 | -5/+5 |
| | | | | | | | | Patch by Dionysios Kalofonos. | ||||
* | | Issue #14641: merge with 3.2 | Sandro Tosi | 2012-04-23 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #14641: minor fixes to sockets Howto; patch by Dionysios Kalofonos | Sandro Tosi | 2012-04-23 | 1 | -2/+2 |
| | | |||||
| * | issue2193 - Update 3.2 docs about legal characters allowed in Cookie name | Senthil Kumaran | 2012-04-22 | 1 | -2/+8 |
| | | |||||
* | | Issue #14605: Expose importlib.abc.FileLoader and | Brett Cannon | 2012-04-22 | 1 | -0/+185 |
| | | | | | | | | | | | | | | | | importlib.machinery.(FileFinder, SourceFileLoader, _SourcelessFileLoader, ExtensionFileLoader). This exposes all of importlib's mechanisms that will become public on the sys module. | ||||
* | | issue2193 - Update docs about the legal characters allowed in Cookie name | Senthil Kumaran | 2012-04-22 | 1 | -2/+11 |
| | | |||||
* | | Closes issue 14634. unittest.mock.create_autospec now supports keyword only ↵ | Michael Foord | 2012-04-21 | 1 | -4/+9 |
| | | | | | | | | arguments. | ||||
* | | Closes issue 14636. mock objects raise exceptions from an iterable side_effect | Michael Foord | 2012-04-21 | 2 | -50/+14 |
| | | |||||
* | | Issue #14628: Document the fact that import always returns the module | Brett Cannon | 2012-04-20 | 1 | -1/+2 |
| | | | | | | | | | | as found in sys.modules and not as what the loader returns (even though it is required to by PEP 302). | ||||
* | | Issue #14127: Add st_{cma}time_ns fields to os.stat() result object. | Larry Hastings | 2012-04-19 | 1 | -6/+26 |
| | | |||||
* | | Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo. | Martin v. Löwis | 2012-04-19 | 1 | -0/+35 |
| | | | | | | | | Patch by Stefan Behnel. | ||||
* | | Remove webbrowser doc reference to the previously removed internet-config ↵ | Ned Deily | 2012-04-18 | 1 | -7/+2 |
|\ \ | |/ | | | | | option. | ||||
| * | Remove webbrowser doc reference to the previously removed internet-config ↵ | Ned Deily | 2012-04-18 | 1 | -7/+2 |
| | | | | | | | | option. | ||||
* | | Fix #14600. Correct reference handling and naming of ImportError convenience ↵ | Brian Curtin | 2012-04-17 | 1 | -19/+4 |
| | | | | | | | | function | ||||
* | | Issue #14087: multiprocessing: add Condition.wait_for(). Patch by sbt. | Charles-François Natali | 2012-04-17 | 1 | -0/+6 |
| | | |||||
* | | Merged cookbook corrections from 3.2. | Vinay Sajip | 2012-04-16 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Corrected version numbers in cookbook example. | Vinay Sajip | 2012-04-16 | 1 | -2/+2 |
| | | |||||
* | | Add versionadded tags to newly added ImportError convenience functions. | Brian Curtin | 2012-04-16 | 1 | -0/+5 |
| | | |||||
* | | Correct warnings when building the docs for the nonexistet :arg: role. ↵ | Brian Curtin | 2012-04-16 | 1 | -5/+5 |
| | | | | | | | | Changed to asterisks. | ||||
* | | Add documentation for the new PyErr_SetFromImport* functions | Brian Curtin | 2012-04-16 | 1 | -0/+18 |
| | | |||||
* | | Merged tweaks to cookbook example from 3.2. | Vinay Sajip | 2012-04-16 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Tweaked format of cookbook example. | Vinay Sajip | 2012-04-16 | 1 | -5/+5 |
| | | |||||
* | | Merged cookbook update from 3.2. | Vinay Sajip | 2012-04-16 | 1 | -0/+44 |
|\ \ | |/ | |||||
| * | Added cookbook example for BOM insertion. | Vinay Sajip | 2012-04-16 | 1 | -0/+44 |
| | | |||||
* | | Issue #14386: Expose the dict_proxy internal type as types.MappingProxyType | Victor Stinner | 2012-04-15 | 4 | -10/+73 |
| | | |||||
* | | Issue #10576: Add a progress callback to gcmodule | Kristján Valur Jónsson | 2012-04-15 | 1 | -2/+37 |
| | | |||||
* | | Clarify that one should not use __import__() directly. Also mention | Brett Cannon | 2012-04-15 | 1 | -3/+5 |
| | | | | | | | | PEP 328 in explaining how 'index' works. | ||||
* | | merge with 3.2 | Sandro Tosi | 2012-04-14 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix typo; thanks to Jérôme Mainka from docs@ | Sandro Tosi | 2012-04-14 | 1 | -1/+1 |
| | | |||||
* | | Merge highlight and spacing fixes in json example with 3.2. | Ezio Melotti | 2012-04-14 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Fix highlight and spacing in json example. | Ezio Melotti | 2012-04-14 | 1 | -4/+4 |
| | | |||||
* | | #14535: merge with 3.2. | Ezio Melotti | 2012-04-14 | 1 | -1/+4 |
|\ \ | |/ | |||||
| * | #14535: fix code highlight in multiprocessing examples. Patch by Tshepang ↵ | Ezio Melotti | 2012-04-14 | 1 | -1/+4 |
| | | | | | | | | Lekhonkhobe. | ||||
| * | 3.2 sidebar: link to 3.3, not 3.1 | Georg Brandl | 2012-04-12 | 1 | -1/+1 |
| | | |||||
* | | Minor docstring / docs corrections for unittest.mock | Michael Foord | 2012-04-13 | 2 | -5/+5 |
| | | |||||
* | | unittest.mock.PropertyMock return value and attributes are now standard ↵ | Michael Foord | 2012-04-13 | 1 | -0/+11 |
| | | | | | | | | MagicMocks | ||||
* | | Issue #1559549: Add 'name' and 'path' attributes to ImportError. | Brett Cannon | 2012-04-13 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | Currently import does not use these attributes as they are planned for use by importlib (which will be another commit). Thanks to Filip Gruszczyński for the initial patch and Brian Curtin for refining it. | ||||
* | | Doc: sort time.CLOCK_xxx constants | Victor Stinner | 2012-04-12 | 1 | -8/+8 |
| | | |||||
* | | Merge doc fixes #14553 and #14552. | R David Murray | 2012-04-12 | 2 | -4/+4 |
|\ \ | |/ | |||||
| * | #14553: fix word order. | R David Murray | 2012-04-12 | 1 | -1/+1 |
| | | | | | | | | Patch by Tshepang Lekhonkhobe. | ||||
| * | #14552: remove redundant wording in 'test' docs. | R David Murray | 2012-04-12 | 1 | -3/+3 |
| | | | | | | | | Original patch by Tshepang Lekhonkhobe. | ||||
* | | Improve the threading.Condition docs. | Antoine Pitrou | 2012-04-11 | 1 | -3/+5 |
|\ \ | |/ | |||||
| * | Improve the threading.Condition docs. | Antoine Pitrou | 2012-04-11 | 1 | -3/+5 |
| | | |||||
* | | #14545: merge 3.2 | Georg Brandl | 2012-04-11 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Closes #14545: make clearer what was added. | Georg Brandl | 2012-04-11 | 1 | -2/+2 |
| | | |||||
* | | Merge | Antoine Pitrou | 2012-04-10 | 1 | -139/+167 |
|\ \ | |/ | |||||
| * | Small improvements to the threading docs: better publicize support for the ↵ | Antoine Pitrou | 2012-04-10 | 1 | -19/+33 |
| | | | | | | | | with statement. | ||||
| * | Fix some markup in the threading docs. | Antoine Pitrou | 2012-04-10 | 1 | -70/+78 |
| | | |||||
| * | Issue #8799: Fix and improve the threading.Condition documentation. | Antoine Pitrou | 2012-04-10 | 1 | -54/+59 |
| | |