- update to 1.7.0
* use ``shutil.get_terminal_size()`` in Python 3.3+ to determine the size of the
terminal, which produces more accurate results than the previous method.
* introduce new ``PY_IGNORE_IMPORTMISMATCH`` environment variable
that suppresses ``ImportMismatchError`` exceptions when set to ``1``.
* add ``TerminalWriter.width_of_current_line`` (i18n version of
``TerminalWriter.chars_on_current_line``), a read-only property
that tracks how wide the current line is, attempting to take
into account international characters in the calculation.
- update to 1.7.0
* use ``shutil.get_terminal_size()`` in Python 3.3+ to determine the size of the
terminal, which produces more accurate results than the previous method.
* introduce new ``PY_IGNORE_IMPORTMISMATCH`` environment variable
that suppresses ``ImportMismatchError`` exceptions when set to ``1``.
* add ``TerminalWriter.width_of_current_line`` (i18n version of
``TerminalWriter.chars_on_current_line``), a read-only property
that tracks how wide the current line is, attempting to take
into account international characters in the calculation. (forwarded request 644859 from mimi_vx)
OBS-URL: https://build.opensuse.org/request/show/644860
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-py?expand=0&rev=30
- update to 1.7.0
* use ``shutil.get_terminal_size()`` in Python 3.3+ to determine the size of the
terminal, which produces more accurate results than the previous method.
* introduce new ``PY_IGNORE_IMPORTMISMATCH`` environment variable
that suppresses ``ImportMismatchError`` exceptions when set to ``1``.
* add ``TerminalWriter.width_of_current_line`` (i18n version of
``TerminalWriter.chars_on_current_line``), a read-only property
that tracks how wide the current line is, attempting to take
into account international characters in the calculation.
- update to 1.7.0
* use ``shutil.get_terminal_size()`` in Python 3.3+ to determine the size of the
terminal, which produces more accurate results than the previous method.
* introduce new ``PY_IGNORE_IMPORTMISMATCH`` environment variable
that suppresses ``ImportMismatchError`` exceptions when set to ``1``.
* add ``TerminalWriter.width_of_current_line`` (i18n version of
``TerminalWriter.chars_on_current_line``), a read-only property
that tracks how wide the current line is, attempting to take
into account international characters in the calculation.
OBS-URL: https://build.opensuse.org/request/show/644859
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-py?expand=0&rev=5
- Update to version 1.4.20:
+ ignore unicode decode errors in xmlescape. Thanks Anatoly Bubenkoff.
+ on python2 modify traceback.format_exception_only to match python3
behaviour, namely trying to print unicode for Exception instances
+ use a safer way for serializing exception reports (helps to fix
pytest issue413)
- Drop %check section, we never ran tests. That would need python-pytest
and introduce a cycle
OBS-URL: https://build.opensuse.org/request/show/225730
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-py?expand=0&rev=15
- update to 1.4.19:
- merge in apipkg fixes
- some micro-optimizations in py/_code/code.py for speeding
up pytest runs. Thanks Alex Gaynor for initiative.
- check PY_COLORS=1 or PY_COLORS=0 to force coloring/not-coloring
for py.io.TerminalWriter() independently from capabilities
of the output file. Thanks Marc Abramowitz for the PR.
- some fixes to unicode handling in assertion handling.
Thanks for the PR to Floris Bruynooghe. (This helps
to fix pytest issue 319).
- depend on setuptools presence, remove distribute_setup (forwarded request 212705 from mvyskocil)
OBS-URL: https://build.opensuse.org/request/show/212707
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-py?expand=0&rev=14
- Update to version 1.4.18
+ introduce path.ensure_dir() as a synonym for ensure(..., dir=1)
+ some unicode/python3 related fixes wrt to path manipulations
(if you start passing unicode particular in py2 you might
still get problems, though)
- Changes from 1.4.17
+ make py.io.TerminalWriter() prefer colorama if it is available
and avoid empty lines when separator-lines are printed by
being defensive and reducing the working terminalwidth by 1
+ introduce optional "expanduser" argument to py.path.local
to that local("~", expanduser=True) gives the home
directory of "user".
- Changes from 1.4.16
+ fix issue35 - define __gt__ ordering between a local path
and strings
+ fix issue36 - make chdir() work even if os.getcwd() fails.
+ add path.exists/isdir/isfile/islink shortcuts
+ introduce local path.as_cwd() context manager.
+ introduce p.write(ensure=1) and p.open(ensure=1)
where ensure triggers creation of neccessary parent dirs. (forwarded request 209873 from posophe)
OBS-URL: https://build.opensuse.org/request/show/209874
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-py?expand=0&rev=13