python-py/python-py.changes
Stephan Kulow 27bce42d16 Accepting request 176815 from devel:languages:python
- 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)

OBS-URL: https://build.opensuse.org/request/show/176815
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-py?expand=0&rev=8
2013-06-05 11:35:53 +00:00

86 lines
3.6 KiB
Plaintext

-------------------------------------------------------------------
Mon May 27 14:08:03 UTC 2013 - dmueller@suse.com
- 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
-------------------------------------------------------------------
Sat Jan 12 16:41:46 UTC 2013 - p.drouand@gmail.com
- Initial python3 support
-------------------------------------------------------------------
Sat Jan 12 16:40:43 UTC 2013 - p.drouand@gmail.com
- Update to 1.4.12 version:
* fix python2.4 support - for pre-AST interpreters re-introduce
old way to find statements in exceptions (closes pytest issue 209)
* add tox.ini to distribution
* fix issue23 - print *,** args information in tracebacks,
thanks Manuel Jacob
-------------------------------------------------------------------
Fri Jun 22 13:34:17 UTC 2012 - saschpe@suse.de
- Update to version 1.4.9:
+ fix bug of path.visit() which would not recognize glob-style patterns
for the "rec" recursion argument
+ changed iniconfig parsing to better conform, now the chars ";"
and "#" only mark a comment at the stripped start of a line
+ include recent apipkg-1.2
+ change internal terminalwriter.line/reline logic to more nicely
support file spinners
- Changes from version 1.4.8:
+ fix issue 13 - correct handling of the tag name object in xmlgen
+ fix issue 14 - support raw attribute values in xmlgen
+ fix windows terminalwriter printing/re-line problem
+ update distribute_setup.py to 0.6.27
-------------------------------------------------------------------
Mon Feb 20 22:04:23 UTC 2012 - saschpe@gmx.de
- 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
-------------------------------------------------------------------
Thu Jul 14 08:48:35 UTC 2011 - saschpe@suse.de
- Initial version