summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Use shorter version of Connection.isolation_level in sqlite3.rstBerker Peksag2016-09-071-1/+1
|
* Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ↵Christian Heimes2016-09-061-0/+6
| | | | ChaCha20 Poly1305.
* Update pkgutil docs to reference appropriate finder and loader object ↵Senthil Kumaran2016-09-061-14/+14
| | | | | | documentation. Initial patch contributed by Jaysinh shukla.
* Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0.Christian Heimes2016-09-051-21/+81
|
* remove ungrammarical apostrophe (closes #27957)Benjamin Peterson2016-09-051-1/+1
|
* Improve recipe by showing results of intermediate stepsRaymond Hettinger2016-09-051-0/+6
|
* Issue 27936: Update doc for round() to indicate that None is an allowable ↵Raymond Hettinger2016-09-041-2/+2
| | | | argument.
* Improve docs for random.seed()Raymond Hettinger2016-09-041-2/+5
|
* #27893: arg name and bytes references in email.parser docs.R David Murray2016-08-311-6/+6
| | | | | | | Perhaps the BytesParser 'text' argument should really be bytes, but it hasn't been, it has been text, so for backward compatibility and for consistency with the regular Parser class, I'm keeping it as 'text'.
* ? Working Directory ?Terry Jan Reedy2016-08-301-1/+1
|
* Fix typosRaymond Hettinger2016-08-301-2/+2
|
* Fix typoZachary Ware2016-08-301-1/+1
|
* Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-291-4/+4
| | | | creates not a cursor. Patch by Xiang Zhang.
* Issue 19504: Change "customise" to "customize" American spelling.Raymond Hettinger2016-08-262-4/+4
|
* Issue #23746: Clarified is_python_build() documentation.Vinay Sajip2016-08-251-1/+3
|
* Issue #25564: Mention exec and __builtins__ in IDLE-console difference section.Terry Jan Reedy2016-08-251-2/+4
|
* Fix misspellingTerry Jan Reedy2016-08-241-1/+1
|
* Fix typo in Cursor.execute().Berker Peksag2016-08-241-1/+1
|
* Issue #6057: Document exceptions in sqlite3 moduleBerker Peksag2016-08-241-2/+32
| | | | Patch by Jaysinh Shukla and Stéphane Wirtel.
* #25916: fix a few 'string of bytes' references.R David Murray2016-08-244-4/+4
| | | | Patch by SilengGhost.
* Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-1/+1
| | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
* Minor spelling fixesMartin Panter2016-08-204-4/+4
|
* Issue #12982: Thanks to PEP 488, Python no longer creates .pyo filesBerker Peksag2016-08-201-3/+1
|
* Issue #12946: Document that PyModule_GetDict can fail in some casesBerker Peksag2016-08-191-4/+7
|
* Use sys.version_info, not sys.version.Zachary Ware2016-08-171-2/+2
| | | | | sys.version[0] gives a string, which fails > comparison with 2. Reported by Arne Maximilian Richter on docs@
* Remove duplicate of the entry in the seealso sectionRaymond Hettinger2016-08-161-5/+0
|
* Add docs for typing.AnyStr and typing.Text. By Michael Lee.Guido van Rossum2016-08-151-0/+27
|
* #27753: fix typo (name->named).R David Murray2016-08-131-1/+1
|
* Issue #27720: Fix error in eng_to_decimal docs and add examples from the ↵Raymond Hettinger2016-08-131-5/+11
| | | | | | specification. (Based on a first draft patch from Evelyn Mitchell.)
* Issue #24637: Document that locals can be any mapping objectBerker Peksag2016-08-131-8/+9
| | | | | | | This behavior is already tested in test_general_eval in Lib/test/test_builtin.py Patch by Matthew Keeter.
* Issue #27712: Fix some typos in the import docs.Brett Cannon2016-08-121-2/+2
| | | | Thanks to Xiang Zhang for the patch.
* Issue 27719: Remove a doc example that is not applicable in Python 3Raymond Hettinger2016-08-121-23/+1
|
* Issue #27745: Fix some typos in Argument Clinic howto, by Lele GaifaxMartin Panter2016-08-121-4/+4
|
* Correct misspellings of ISO-8859Martin Panter2016-08-101-2/+2
|
* Issue #27200: Fix doctests in Doc/library/hashlib.rstZachary Ware2016-08-101-0/+5
|
* Issue #27210: Fix doctests for a few modules.Zachary Ware2016-08-103-11/+9
| | | | Initial patch by Jelle Zijlstra.
* Issue #27209: Fix doctests in Doc/library/email*.rstZachary Ware2016-08-103-30/+29
| | | | Patch by Jelle Zijlstra.
* Issue #27208: Fix doctest in Doc/library/traceback.rstZachary Ware2016-08-101-4/+4
| | | | Patch by Jelle Zijlstra.
* Issue #27207: Fix doctests in Doc/whatsnew/3.2.rstZachary Ware2016-08-101-18/+31
| | | | Initial patch by Jelle Zijlstra.
* Issue #27206: Fix doctests in Doc/tutorial.Zachary Ware2016-08-091-0/+4
| | | | Patch by Jelle Zijlstra.
* Issue #27205: Fix doctests in Doc/library/collections.rst.Zachary Ware2016-08-091-15/+15
| | | | Initial patch by Jelle Zijlstra.
* Issue #27722: Fix default for touch method's 'mode' argumentZachary Ware2016-08-091-1/+1
|
* Issue #27204: Fix doctests in Doc/howtoZachary Ware2016-08-093-24/+29
| | | | Patch by Jelle Zijlstra.
* Correct signatures for a couple of logging handlersZachary Ware2016-08-091-2/+2
| | | | Reported by Oleg Gromyak on docs@
* Issue #27700: Document AbstractEventLoop, not BaseEventLoop.Guido van Rossum2016-08-087-129/+138
|
* Fix use of default reST roleBerker Peksag2016-08-081-3/+3
|
* Issue #23322: Remove outdated reference to an example in parser docsBerker Peksag2016-08-081-7/+0
| | | | Initial patch by Sahil Chelaramani.
* Use asyncio.gather instead of asyncio.wait in example.Andrew Svetlov2016-08-081-1/+1
| | | | | gather will raise exception in case of problem but wait just returns done and pending lists of futures. For getting error every future result should be retrieved, which is boring and error prone.
* Better docs for typing.Any by Michael Lee. Fixes issue #27688.Guido van Rossum2016-08-061-9/+71
|
* Issue #18548: Fix unittest.TestSuite() exampleBerker Peksag2016-08-061-2/+2
| | | | Initial patch by py.user.