Merge branch 'master' of git://github.com/infraredgirl/pint into develop

This commit is contained in:
Hernan Grecco
2014-05-26 18:41:06 -03:00
4 changed files with 5 additions and 5 deletions

2
README
View File

@@ -7,7 +7,7 @@ It allows arithmetic operations between them and conversions from and
to different units.
It is distributed with a comprehensive list of physical units, prefixes
and constants. Due to it's modular design, you to extend (or even rewrite!)
and constants. Due to its modular design, you to extend (or even rewrite!)
the complete list without changing the source code.
It has a complete test coverage. It runs in Python 2.7 and 3.X

View File

@@ -9,7 +9,7 @@ Pint: a Python units library
Pint is Python package to define, operate and manipulate **physical quantities**: the product of a numerical value and a unit of measurement. It allows arithmetic operations between them and conversions from and to different units.
It is distributed with a comprehensive list of physical units, prefixes and constants. Due to it's modular design, you can extend (or even rewrite!) the complete list without changing the source code.
It is distributed with a comprehensive list of physical units, prefixes and constants. Due to its modular design, you can extend (or even rewrite!) the complete list without changing the source code.
It has a complete test coverage. It runs in Python 2.6+ and 3.2+ with no other dependency. It licensed under BSD.
@@ -37,7 +37,7 @@ Extended conversion flags are given to provide symbolic, latex and pretty format
**Small codebase**: easy to maintain codebase with a flat hierarchy.
**Dependency free**: it depends only on Python and it's standard library.
**Dependency free**: it depends only on Python and its standard library.
**Python 2 and 3**: a single codebase that runs unchanged in Python 2.7+ and Python 3.0+.

View File

@@ -74,7 +74,7 @@ If you want to convert in-place (i.e. without creating another object), you can
>>> print(speed)
7086.614173228345 inch / minute
If you ask Pint to perform and invalid conversion:
If you ask Pint to perform an invalid conversion:
.. doctest::

View File

@@ -614,7 +614,7 @@ class UnitRegistry(object):
>>> with ureg.context('one'):
... pass
If the context has an argument, you can specify it's value as a keyword
If the context has an argument, you can specify its value as a keyword
argument::
>>> with ureg.context('one', n=1):