| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
| |
Use base class rather than metaclass in examples.
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Added support for CAN_ISOTP protocol
* Added unit tests for CAN ISOTP
* Updated documentation for ISO-TP protocol
* Removed trailing whitespace in documentation
* Added blurb NEWS.d file
* updated Misc/ACKS
* Fixed broken unit test that was using isotp const outside of skippable section
* Removed dependecy over third party project
* Added implementation for getsockname + unit tests
* Missing newline at end of ACKS file
* Accidentally inserted a type in ACKS file
* Followed tiran changes review #1 recommendations
* Added spaces after comma
|
| |
|
|
|
| |
- Link to the regular expressions object documentation
- Clarify that it can be used with more than the two methods currently stated.
|
| |
|
|
|
|
|
| |
bpo-31072: Rename the new filter argument for zipapp.create_archive (GH-3049)
* Rename the new argument to "filter"
* Improve tests for the new functionality
* Add a "What's New" entry.
|
| |
|
|
|
|
|
| |
The fix for bpo-23835 fixed ConfigParser behavior in defaults= handling.
Unfortunately, it caused a backwards compatibility regression with
RawConfigParser objects which allow for non-string values.
This commit restores the legacy behavior for RawConfigParser only.
|
| |
|
| |
Title says all.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Coroutines and async generators use a distinct attribute name for their
code objects, so this updates the `dis` module to correctly disassemble
objects with those attributes.
Due to the increase in the test module length, it also fixes some latent
defects in the tests related to how the displayed source line numbers
are extracted.
https://bugs.python.org/issue31230 is a follow-up issue suggesting we
may want to solve this a different way, by instead giving all these object
types a common `__code__` attribute, avoiding the need for special
casing in the `dis` module.
|
| |
|
|
|
|
|
|
|
|
| |
OpenSSL 1.1.0 to 1.1.0e aborted the handshake when server and client
could not agree on a protocol using ALPN. OpenSSL 1.1.0f changed that.
The most recent version now behaves like OpenSSL 1.0.2 again. The ALPN
callback can pretend to not been set.
See https://github.com/openssl/openssl/pull/3158 for more details
Signed-off-by: Christian Heimes <christian@python.org>
|
| | |
|
| |
|
|
|
|
| |
bpo-31072: Add a filter argument to zipapp.create_archive (GH-3021)
* Add an include_file argument to allow callers to decide which files to include
* Document the new argument
|
| |
|
|
| |
"not only is it .." is the correct form, as opposed to:
"not only it is ..."
|
| | |
|
| |
|
|
| |
kwargs. (GH-2979)
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets.
* bpo-5288: Implemented %z formatting of sub-minute offsets.
* bpo-5288: Removed mentions of the whole minute limitation on TZ offsets.
* bpo-5288: Removed one more mention of the whole minute limitation.
Thanks @csabella!
* Fix a formatting error in the docs
* Addressed review comments.
Thanks, @haypo.
|
| |
|
|
| |
stream. (GH-2921)
|
| |
|
| |
Initial patch by Peter Thomassen.
|
| | |
|
| |
|
|
|
|
| |
* Update 'Porting to .37' section.
* Fix a minor example in the doc.
|
| | |
|
| | |
|
| |
|
|
| |
(GH-1699)
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* bpo-30794: added kill() method to multiprocessing.Process
* Added entries to documentation and NEWS
* Refactored test_terminate and test_kill
* Fix SIGTERM and SIGKILL being used on Windows for the tests
* Added "versionadded" marker to the documentation
* Fix trailing whitespace in doc
|
| | |
|
| | |
|
| | |
|
| |
|
| |
Original patch by Guilherme Polo. Revisions by Cheryl Sabella.
|
| |
|
|
|
|
|
|
|
|
| |
* Fix bpo-30596: Add close() method to multiprocessing.Process
* Raise ValueError if close() is called before the Process is finished running
* Add docs
* Add NEWS blurb
|
| | |
|
| |
|
| |
Straightforward. While we're at it, though, strip trailing whitespace from generated tables.
|
| |
|
| |
When a class and its subclass are present, the latter is skipped.
|
| |
|
|
|
| |
Improve the description of the high and low parameters for set_write_buffer_limits.
Also fixed a small grammatical issue.
|
| |
|
|
|
|
|
|
|
| |
* Make PyTraceMalloc_Track() and PyTraceMalloc_Untrack() functions
public (remove the "_" prefix)
* Remove the _PyTraceMalloc_domain_t type: use directly unsigned
int.
* Document methods
Note: methods are already tested in test_tracemalloc.
|
| |
|
|
|
|
|
|
| |
(#2266)
They now always return bytes.
Updated the gettext documentation.
|
| | |
|
| |
|
|
|
| |
parent isn't a package (GH-1899)
Previously AttributeError was raised, but that's not very reflective of the fact that the requested module can't be found since the specified parent isn't actually a package.
|
| |
|
| |
When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
|
| | |
|
| | |
|
| |
|
| |
The depth argument limits recursion.
|
| | |
|
| |
|
| |
SSLObject has recv() and send(), but they don't do any network io.
|
| |
|
| |
Mention that fnmatchcase does not call normcase, and fnmatch does.
|
| |
|
| |
Document that assertNotRegexpMatches is a deprecated alias for assertNotRegex.
|
| | |
|
| |
|
|
|
| |
* RFC 1750 has been been obsoleted by RFC 4086.
* RFC 3280 has been obsoleted by RFC 5280.
* RFC 4366 has been obsoleted by RFC 6066.
|
| | |
|
| |
|
| |
Replace `datetuil` into `dateutil`
|