
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
code-contracts is a library that provides:
unittest.TestCase
.The goal of this library is not to make Python a statically-typed language. Instead, it aims to help you define what is expected from your code before it executes, so that you can more easily track and prevent bugs.
So here's how you can use contracts:
.. code-block:: python
from contracts import contract
def build_rocket(name, model, company):
contract.is_not_empty(name)
contract.is_greater_than(model, 0)
contract.is_not_empty(company)
print("You built a {0} {1} rocket from {2}.".format(name, model, company))
if __name__ == "__main__":
build_rocket("Falcon", 9, "SpaceX")
And here's how you can use assertions to unit test the above function:
.. code-block:: python
import unittest
from contracts import assertion
class RocketTests(unittest.TestCase):
def test_build_rocket(self):
assertion.does_not_raise(ValueError, build_rocket, "Falcon", 9, "SpaceX")
code-contracts officially supports Python 3.3 and onwards.
Simply run the following command in your favorite terminal:
.. code-block:: bash
$ pip install code-contracts
The full documentation is available at http://contracts.readthedocs.io/.
FAQs
A library that provides code contracts and assertions.
We found that code-contracts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.