Revisions of python-py

Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 18)
Split 13.2 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 234199 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 16)
Automatic submission by obs-autosubmit
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 225730 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 15)
- 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
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 212707 from Ciaran Farrell's avatar Ciaran Farrell (babelworx) (revision 14)
- 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)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 209874 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 13)
- 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)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 11)
Split 13.1 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 180873 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 10)
- update to 1.4.15:
  - majorly speed up some common calling patterns with
    LocalPath.listdir()/join/check/stat functions considerably.
  - fix an edge case with fnmatch where a glob style pattern appeared
    in an absolute path. (forwarded request 180857 from dirkmueller)
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 179937 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 9)
housekeeping sr, necessary due to split between d:l:p and d:l:p3 and (manual) _link removal in Factory.
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 176815 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 8)
- update to 1.4.14:
 - fix dupfile to work with files that don't carry a mode.
 - fix getting statementrange/compiling a file ending
   in a comment line without newline (on python2.5)
 - for local paths you can pass "mode=True" to a copy()
   in order to copy permission bits (underlying mechanism
   is using shutil.copymode)
 - add paths arguments to py.path.local.sysfind to restrict
   search to the diretories in the path.
 - add isdir/isfile/islink to path.stat() objects allowing to perform
   multiple checks without calling out multiple times
 - drop py.path.local.__new__ in favour of a simpler __init__
 - iniconfig: allow "name:value" settings in config files, no space after
   "name" required
 - fix issue 27 - NameError in unlikely untested case of saferepr

- update to 1.4.14:
 - fix dupfile to work with files that don't carry a mode.
 - fix getting statementrange/compiling a file ending
   in a comment line without newline (on python2.5)
 - for local paths you can pass "mode=True" to a copy()
   in order to copy permission bits (underlying mechanism
   is using shutil.copymode)
 - add paths arguments to py.path.local.sysfind to restrict
   search to the diretories in the path.
 - add isdir/isfile/islink to path.stat() objects allowing to perform
   multiple checks without calling out multiple times
 - drop py.path.local.__new__ in favour of a simpler __init__
 - iniconfig: allow "name:value" settings in config files, no space after
   "name" required (forwarded request 176757 from dirkmueller)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 7)
Split 12.3 from Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 148575 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 6)
Made required changes (forwarded request 148425 from posophe)
Adrian Schröter's avatar Adrian Schröter (adrianSuSE) committed (revision 4)
branched from openSUSE:Factory
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 106131 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 3)
- Update to version 1.4.7:
  * fix issue11 - own test failure with python3.3 / Thanks Benjamin Peterson
  * help fix pytest issue 102
- Changes from version 1.4.6:
  * help to fix pytest issue99: unify output of 
    ExceptionInfo.getrepr(style="native") with ...(style="long")
  * fix issue7: source.getstatementrange() now raises proper error
    if no valid statement can be found
  * fix issue8: fix code and tests of svnurl/svnwc to work on subversion 1.7 - 
    note that path.status(updates=1) will not properly work svn-17's status 
    --xml output is broken.
  * make source.getstatementrange() more resilent about non-python code frames
    (as seen from jnja2)
  * make trackeback recursion detection more resilent
    about the eval magic of a decorator library
  * iniconfig: add support for ; as comment starter
  * properly handle lists in xmlgen on python3
  * normalize py.code.getfslineno(obj) to always return a (string, int) tuple
    defaulting to ("", -1) respectively if no source code can be found for obj.
- Changes from version 1.4.5:
  * improve some unicode handling in terminalwriter and capturing
- Spec file cleanup:
  * BuildRequire python-distribute instead of setuptools
  * Simplified macro usage
  * Removed outdated %clean section
Displaying revisions 21 - 40 of 42
openSUSE Build Service is sponsored by