summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36018: Update example to show mean and stdev (GH-13047)Raymond Hettinger2019-05-021-4/+6
|
* Move dangling bullet points into named subsections (GH-13046)Raymond Hettinger2019-05-021-11/+16
|
* bpo-13611: C14N 2.0 implementation for ElementTree (GH-12966)Stefan Behnel2019-05-012-0/+64
| | | | | | | * Implement C14N 2.0 as a new canonicalize() function in ElementTree. Missing features: - prefix renaming in XPath expressions (tag and attribute text is supported) - preservation of original prefixes given redundant namespace declarations
* Namespace packages _bootstrap.ModuleSpec.loader attributes are no longer ↵Géry Ogam2019-05-011-6/+5
| | | | | | | | | None (#10376) Namespace packages _bootstrap.ModuleSpec.loader attributes are no longer `None` _after_ calling the importlib._bootstrap._init_module_attrs function. See: * https://stackoverflow.com/questions/52869541/namespace-package-spec-loader-and-loader-attributes-not-set-to-none * https://bugs.python.org/issue35181
* bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser ↵Stefan Behnel2019-05-011-2/+20
| | | | | target (GH-12885) * bpo-36676: Implement namespace prefix aware parsing support for the XMLParser target in ElementTree.
* bpo-36673: Implement comment/PI parsing support for the TreeBuilder in ↵Stefan Behnel2019-05-011-12/+53
| | | | | | | | ElementTree. (#12883) * bpo-36673: Implement comment/PI parsing support for the TreeBuilder in ElementTree. * bpo-36673: Rewrite the comment/PI factory handling for the TreeBuilder in "_elementtree" to make it use the same factories as the ElementTree module, and to make it explicit when the comments/PIs are inserted into the tree and when they are not (which is the default).
* closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. ↵Utkarsh Gupta2019-04-301-1/+1
| | | | (GH-13008)
* bpo-36751: Deprecate getfullargspec and report positional-only args as ↵Pablo Galindo2019-04-302-0/+9
| | | | | | | | regular args (GH-13016) * bpo-36751: Deprecate getfullargspec and report positional-only args as regular args * Use inspect.signature in testhelpers
* bpo-36004: Add date.fromisocalendar (GH-11888)Paul Ganssle2019-04-292-0/+27
| | | | This commit implements the first version of date.fromisocalendar, the inverse function for date.isocalendar.
* Add initial 'whatsnew' section for PEP 570 (GH-12942)Guido van Rossum2019-04-291-0/+25
|
* bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ↵Joannah Nanjekye2019-04-292-0/+31
| | | | | | | | (GH-12667) PyEval_AcquireLock() and PyEval_AcquireThread() now terminate the current thread if called while the interpreter is finalizing, making them consistent with PyEval_RestoreThread(), Py_END_ALLOW_THREADS, and PyGILState_Ensure().
* bpo-21536: On Android, C extensions are linked to libpython (GH-12989)xdegaye2019-04-292-7/+8
|
* bpo-36715: Add usage note for dict.fromkeys() (GH-12974)Raymond Hettinger2019-04-281-1/+4
|
* bpo-36722: Style and grammar edits for ABI news entries (GH-12979)Paul Ganssle2019-04-271-12/+13
|
* Syntax highlight IDLE html doc code example. (GH-12981)Terry Jan Reedy2019-04-271-4/+2
| | | The new markup is currently ignored by IDLE's tk doc display.
* bpo-36722: Add What's New entry for debug ABI (GH-12957)Victor Stinner2019-04-261-0/+24
|
* bpo-36669: add matmul support to weakref.proxy (GH-12932)Mark Dickinson2019-04-262-0/+11
|
* bpo-35920: Windows 10 ARM32 platform support (GH-11774)Paul Monson2019-04-251-0/+15
|
* bpo-21536: C extensions are no longer linked to libpython (GH-12946)Victor Stinner2019-04-252-4/+11
| | | | | | | | | | | | | | On Unix, C extensions are no longer linked to libpython. It is now possible to load a C extension built using a shared library Python with a statically linked Python. When Python is embedded, libpython must not be loaded with RTLD_LOCAL, but RTLD_GLOBAL instead. Previously, using RTLD_LOCAL, it was already not possible to load C extensions which were not linked to libpython, like C extensions of the standard library built by the "*shared*" section of Modules/Setup. distutils, python-config and python-config.py have been modified.
* bpo-35537: Document posix_spawn() change in subprocess (GH-11668)Victor Stinner2019-04-252-0/+13
| | | | | Document that subprocess.Popen no longer raise an exception on error like missing program on very specific platforms when using os.posix_spawn() is used.
* bpo-36465: Make release and debug ABI compatible (GH-12615)Victor Stinner2019-04-241-2/+5
| | | | | | | | | | | | | | Release build and debug build are now ABI compatible: the Py_DEBUG define no longer implies Py_TRACE_REFS define which introduces the only ABI incompatibility. A new "./configure --with-trace-refs" build option is now required to get Py_TRACE_REFS define which adds sys.getobjects() function and PYTHONDUMPREFS environment variable. Changes: * Add ./configure --with-trace-refs * Py_DEBUG no longer implies Py_TRACE_REFS
* Issue 35224: Add PEP 572 (assignment expressions) to What's New (#12941)Guido van Rossum2019-04-241-0/+16
| | | This is meant as a stub, during the PyCon sprints we can iterate.
* bpo-30840: Document relative imports (#12831)Joannah Nanjekye2019-04-242-1/+42
| | | | | | | | | | | | | | | | | | | | | | | | * document relative imports * 📜🤖 Added by blurb_it. * fix indentation error * remove indentation * Document relative imports * Document relative imports * remove from ...package * Document relative imports * remove trailing space * Document relative imports * Document relative imports
* replace 'sequencial argument' by 'positional' in doc (GH-12925)Mathieu Dupuy2019-04-231-1/+1
|
* bpo-36018: Make "seed" into a keyword only argument (GH-12921)Raymond Hettinger2019-04-231-1/+1
|
* Add module specification: itemgetter -> operator.itemgetter (GH-12823)Jakub Molinski2019-04-231-1/+1
|
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-232-3/+55
|
* Doc: add the missing ".tp_flags" in type definition (GH-12902)Wu Wei2019-04-221-0/+1
|
* bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879)mollison2019-04-211-0/+1
|
* Fix typo (GH-12878)Fredrik Averpil2019-04-201-1/+1
| | | "sychronization" -> "synchronization"
* bpo-30485: Change the prefix for defining the default namespace in ↵Stefan Behnel2019-04-181-3/+3
| | | | ElementPath from None to '' since there is existing code that uses that and it's more convenient to have an all-string-keys dict (e.g. when sorting items etc.). (#12860)
* bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)Enrico Alarico Carbognani2019-04-181-3/+3
| | | | | | | | | | | | # [bpo-36651](https://bugs.python.org/issue36651): Fixed Asyncio Event Loop documentation inconsistency In the documentation for the call_later and the call_at methods there is a note which says that the delay cannot be longer than a day, but both methods have a note saying that this limitation was removed in Python 3.8 Here I fixed this issue by removing the pre-exising note and added a versionchanged. To test my changes I have rebuilt the documentation with ```make html```. I did not have any errors and the effected page displayed correctly on a browser. https://bugs.python.org/issue36651
* Fix wrong indentation of a paragraph in documentation (GH-12868)cocoatomo2019-04-181-2/+2
| | | This paragraph doesn't seem to be a part of code, but merged into previous code block.
* bpo-32913: Added re.Match.groupdict example to regex HOWTO (GH-5821)josh2019-04-171-0/+7
|
* bpo-31904: Port test_resource to VxWorks (GH-12719)Lihua Zhao2019-04-171-0/+2
| | | Skip tests cases setting RLIMIT_FSIZE and RLIMIT_CPU on VxWorks.
* Clarify file-closing example in tutorial (GH-11652)Colin Watson2019-04-171-0/+2
|
* bpo-33783: Use proper class markup for random.Random docs (GHè7817)Matthias Bussonnier2019-04-161-0/+5
| | | | Signed-off-by: Matthias Bussonnier <bussonniermatthias@gmail.com>
* bpo-36345: Update wsgiref example (GH-12562)Stéphane Wirtel2019-04-161-30/+4
| | | | Use literalinclude markup to include Tools/scripts/serve.py code. Tools/scripts/serve.py first argument on the command line is now optional.
* bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411)Victor Stinner2019-04-152-0/+6
| | | | | | | | | | | | The imap.IMAP4.logout() method no longer ignores silently arbitrary exceptions. Changes: * The IMAP4.logout() method now expects a "BYE" untagged response, rather than relying on _check_bye() which raises a self.abort() exception. * IMAP4.__exit__() now does nothing if the client already logged out. * Add more debug info if test_logout() tests fail.
* Doc: update PendingDeprecationWarning explanation (GH-12837)Inada Naoki2019-04-151-9/+6
| | | | | | Keep the nudge towards DeprecationWarning, but remove the "Note" markup and generally shorten the description. Ref: https://github.com/python/cpython/pull/12505/files#r273978757
* bpo-31904: Port the time module on VxWorks (GH-12305)pxinwr2019-04-151-0/+2
| | | time.clock() is not available on VxWorks.
* bpo-31904: Don't build the _crypt extension on VxWorks (GH-12833)pxinwr2019-04-151-0/+2
|
* bpo-31658: Make xml.sax.parse accepting Path objects (GH-8564)Mickaël Schoentgen2019-04-141-1/+5
|
* bpo-30485: support a default prefix mapping in ElementPath by passing None ↵Stefan Behnel2019-04-141-3/+6
| | | | as prefix (#1823)
* bpo-36227: ElementTree.tostring() default_namespace and xml_declaration ↵Bernt Røskar Brenna2019-04-141-6/+15
| | | | | arguments (GH-12225) Add new keyword arguments "default_namespace" and "xml_declaration" to functions ET.tostring() and ET.tostringlist(), as known from ElementTree.write().
* bpo-36427: Document that PyEval_RestoreThread and PyGILState_Ensure can ↵Pablo Galindo2019-04-131-0/+12
| | | | | | | | terminate the calling thread (GH-12541) Calling these function from a thread when the runtime is finalizing will terminate the thread, even if the thread was not created by Python. Users can use _Py_IsFinalizing or sys.is_finalizing to check if the interpreter is in the process of being finalized before calling this function to avoid unwanted termination.
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-131-0/+4
| | | After the removal of pgen, multiple header and function prototypes that lack implementation or are unused are still lying around.
* Doc: define PY_SSIZE_T_CLEAN always (GH-12794)Inada Naoki2019-04-1310-4/+22
|
* bpo-35581: Document @typing.type_check_only (GH-11312)Sebastian Rittau2019-04-121-0/+18
|
* bpo-33922: Adding documentation for new "-64" suffix of Python launcher ↵mrh19972019-04-121-13/+23
| | | | | (GH-7849) Since bpo-30291 it is possible to specify the architecture of Python when using the launcher