8
0

- updated to 0.39

- Added py_is_tuple and made Pl2Py recognize an array ref that has
        been a tuple before in Python.
      - Fixed memory corruption on a Python function calling a Perl function
        that changed the stack pointer.
      - Fixed several memory leaks (scalars and dict keys).
      - Fixed wrong refcount of return values in py_eval (RT #48081)
      - Fixed accessing Unicode keys in a dict passed from Perl.
      - Fixed compatability of t/30floats.t with Python 2.7.
  
      - Fix Perl assertion fail if __getitem__ called multiple times
      - Fix "Attempt to free unreferenced scalar" sometimes happening when
        calling a Perl sub with named parameters from Python.
      - Fix several memory leaks found using valgrind
      - Add py_finalize to be able to shut down the Python interpreter.
  
      - Added line numbers to Python exception messages.
      - Fixed passing of a perl code ref through Python space.
      - Allow passing references to methods from Python to Perl.
      - Implemented py_has_attr complementing py_get_attr.
      - We now support stringification of Python objects via __str__ methods.
      - Fixed segfault when accessing a Python object's attributes throws an
        exception.
      - Fixed some problems with the test suite, hopefully making installation
        work on more machines.
      - Fixed compilation on Win32, linking still seems broken though :(
  
      - Fixed a segfault when passing dicts with Unicode keys to Perl
      - Pass Python exceptions to Perl instead of just printing to STDERR

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Inline-Python?expand=0&rev=3
This commit is contained in:
Stephan Kulow
2011-04-22 18:29:15 +00:00
committed by Git OBS Bridge
parent c51b3374c9
commit cf50e7eb82
4 changed files with 95 additions and 60 deletions

View File

@@ -1,3 +1,36 @@
-------------------------------------------------------------------
Fri Apr 22 18:15:09 UTC 2011 - coolo@opensuse.org
- updated to 0.39
- Added py_is_tuple and made Pl2Py recognize an array ref that has
been a tuple before in Python.
- Fixed memory corruption on a Python function calling a Perl function
that changed the stack pointer.
- Fixed several memory leaks (scalars and dict keys).
- Fixed wrong refcount of return values in py_eval (RT #48081)
- Fixed accessing Unicode keys in a dict passed from Perl.
- Fixed compatability of t/30floats.t with Python 2.7.
- Fix Perl assertion fail if __getitem__ called multiple times
- Fix "Attempt to free unreferenced scalar" sometimes happening when
calling a Perl sub with named parameters from Python.
- Fix several memory leaks found using valgrind
- Add py_finalize to be able to shut down the Python interpreter.
- Added line numbers to Python exception messages.
- Fixed passing of a perl code ref through Python space.
- Allow passing references to methods from Python to Perl.
- Implemented py_has_attr complementing py_get_attr.
- We now support stringification of Python objects via __str__ methods.
- Fixed segfault when accessing a Python object's attributes throws an
exception.
- Fixed some problems with the test suite, hopefully making installation
work on more machines.
- Fixed compilation on Win32, linking still seems broken though :(
- Fixed a segfault when passing dicts with Unicode keys to Perl
- Pass Python exceptions to Perl instead of just printing to STDERR
-------------------------------------------------------------------
Wed Jun 2 23:33:09 UTC 2010 - jw@novell.com