Changelog for
python2-py-1.4.34-1.2.noarch.rpm :
* Fri Jun 30 2017 aloisioAATTgmx.com- Update to 1.4.34
* fix issue119 / pytest issue708 where tmpdir may fail to make numbered directories when the filesystem is case-insensitive. 1.4.33:
* avoid imports in calls to py.path.local().fnmatch(). Thanks Andreas Pelme for the PR.
* fix issue106: Naive unicode encoding when calling fspath() in python2. Thanks Tiago Nobrega for the PR.
* fix issue110: unittest.TestCase.assertWarns fails with py imported.
* Thu Feb 23 2017 jmatejekAATTsuse.com- update to 1.4.32 - fix issue70: added ability to copy all stat info in py.path.local.copy. - make TerminalWriter.fullwidth a property. This results in the correct value when the terminal gets resized. - update supported html tags to include recent additions. Thanks Denis Afonso for the PR. - Remove internal code in ``Source.compile`` meant to support earlier Python 3 versions that produced the side effect of leaving ``None`` in ``sys.modules`` when called (see pytest-dev/pytest#2103). Thanks Bruno Oliveira for the PR.
* Wed Oct 05 2016 jmatejekAATTsuse.com- update for singlespec
* Sat Sep 03 2016 p.drouandAATTgmail.com- Update download Url
* Sat Jul 23 2016 michaelAATTstroeder.com- corrected homepage URL- HTTPS URL for pypi source link- update to version 1.4.31
* fix local().copy(dest, mode=True) to also work with unicode.
* pass better error message with svn EEXIST paths
* Thu Jul 02 2015 ajAATTajaissle.de- update to version 1.4.30:
* fix issue68 an assert with a multiline list comprehension was not reported correctly. Thanks Henrik Heibuerger.- changes from version 1.4.29:
* fix issue55: revert a change to the statement finding algorithm which is used by pytest for generating tracebacks. Thanks Daniel Hahler for initial analysis.
* fix pytest issue254 for when traceback rendering can’t find valid source code. Thanks Ionel Cristian Maries.
* Tue Jun 30 2015 ajAATTajaissle.de- Split documentation into separate package to avoid build loop
* Mon Jun 22 2015 tbechtoldAATTsuse.com- update to 1.4.28: - fix issue64 -- dirpath regression when \"abs=True\" is passed. - fix issue59: point to new repo site - allow a new ensuresyspath=\"append\" mode for py.path.local.pyimport() so that a neccessary import path is appended instead of prepended to sys.path - strike undocumented, untested argument to py.path.local.pypkgpath - speed up py.path.local.dirpath by a factor of 10
* Wed Feb 04 2015 tbechtoldAATTsuse.com- update to version 1.4.26: - avoid calling normpath twice in py.path.local - py.builtin._reraise properly reraises under Python3 now. - fix issue53 - remove module index, thanks jenisys. - allow posix path separators when \"fnmatch\" is called. Thanks Christian Long for the complete PR.
* Sat Sep 27 2014 dmuellerAATTsuse.com- update to 1.4.25: - fix issue52: vaguely fix py25 compat of py.path.local (it\'s not officially supported), also fix docs - fix pytest issue 589: when checking if we have a recursion error check for the specific \"maximum recursion depth\" text of the exception.- update to 1.4.24: - Fix retrieving source when an else: line has an other statement on the same line. - add localpath read_text/write_text/read_bytes/write_bytes methods as shortcuts and clearer bytes/text interfaces for read/write. Adapted from a PR from Paul Moore.- update to 1.4.23: - use newer apipkg version which makes attribute access on alias modules resolve to None rather than an ImportError. This helps with code that uses inspect.getframeinfo() on py34 which causes a complete walk on sys.modules thus triggering the alias module to resolve and blowing up with ImportError. The negative side is that something like \"py.test.X\" will now result in None instead of \"importerror: pytest\" if pytest is not installed. But you shouldn\'t import \"py.test\" anyway anymore. - adapt one svn test to only check for any exception instead of specific ones because different svn versions cause different errors and we don\'t care.