1 new commit in py:
https://bitbucket.org/hpk42/py/changeset/e8f6ab426857/ changeset: e8f6ab426857 user: hpk42 date: 2012-05-14 17:16:44 summary: fix windows failure by striking windows terminalwriter "line" override affected #: 4 files diff -r 4e5b244a612b7d60604120b632461428f7bc24f7 -r e8f6ab426857877c569f917b6cb111636dc5a74a CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,7 @@ - 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 Changes between 1.4.6 and 1.4.7 ================================================== diff -r 4e5b244a612b7d60604120b632461428f7bc24f7 -r e8f6ab426857877c569f917b6cb111636dc5a74a py/__init__.py --- a/py/__init__.py +++ b/py/__init__.py @@ -8,7 +8,7 @@ (c) Holger Krekel and others, 2004-2010 """ -__version__ = '1.4.8.dev2' +__version__ = '1.4.8.dev3' from py import _apipkg diff -r 4e5b244a612b7d60604120b632461428f7bc24f7 -r e8f6ab426857877c569f917b6cb111636dc5a74a py/_io/terminalwriter.py --- a/py/_io/terminalwriter.py +++ b/py/_io/terminalwriter.py @@ -239,10 +239,6 @@ if oldcolors: SetConsoleTextAttribute(handle, oldcolors) - def line(self, s="", **kw): - self.write(s, **kw) # works better for resetting colors - self.write("\n") - class WriteFile(object): def __init__(self, writemethod, encoding=None): self.encoding = encoding diff -r 4e5b244a612b7d60604120b632461428f7bc24f7 -r e8f6ab426857877c569f917b6cb111636dc5a74a setup.py --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ name='py', description='library with cross-python path, ini-parsing, io, code, log facilities', long_description = open('README.txt').read(), - version='1.4.8.dev2', + version='1.4.8.dev3', url='http://pylib.org', license='MIT license', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], Repository URL: https://bitbucket.org/hpk42/py/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ py-svn mailing list py-svn@codespeak.net http://codespeak.net/mailman/listinfo/py-svn