Mailinglist Archive: yast-commit (459 mails)

< Previous Next >
[yast-commit] r60700 - in /trunk/python-bindings: package/yast2-python-bindings.changes src/YCPTypes.cc
  • From: juhliarik@xxxxxxxxxxxxxxxx
  • Date: Thu, 04 Feb 2010 14:48:42 -0000
  • Message-id: <E1Nd30d-0002W6-1K@xxxxxxxxxxxxxxxx>
Author: juhliarik
Date: Thu Feb 4 15:48:42 2010
New Revision: 60700

URL: http://svn.opensuse.org/viewcvs/yast?rev=60700&view=rev
Log:
merging previous changes

Modified:
trunk/python-bindings/package/yast2-python-bindings.changes
trunk/python-bindings/src/YCPTypes.cc

Modified: trunk/python-bindings/package/yast2-python-bindings.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/python-bindings/package/yast2-python-bindings.changes?rev=60700&r1=60699&r2=60700&view=diff
==============================================================================
--- trunk/python-bindings/package/yast2-python-bindings.changes (original)
+++ trunk/python-bindings/package/yast2-python-bindings.changes Thu Feb 4
15:48:42 2010
@@ -6,6 +6,11 @@
- 2.19.0

-------------------------------------------------------------------
+Mon Dec 15 15:40:14 CET 2008 - juhliarik@xxxxxxx
+ - added fix for problem with strict-aliasing (bnc #444472)
+ - 2.17.4
+
+-------------------------------------------------------------------
Wed Sep 24 14:32:12 CEST 2008 - visnov@xxxxxxx

- y2debug is always logged (bnc#426554)

Modified: trunk/python-bindings/src/YCPTypes.cc
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/python-bindings/src/YCPTypes.cc?rev=60700&r1=60699&r2=60700&view=diff
==============================================================================
--- trunk/python-bindings/src/YCPTypes.cc (original)
+++ trunk/python-bindings/src/YCPTypes.cc Thu Feb 4 15:48:42 2010
@@ -12,13 +12,13 @@
return false;
if (PyType_Ready(&CodeType) < 0)
return false;
- Py_INCREF(&SymbolType);
+ Py_INCREF((PyObject *)&SymbolType);
PyModule_AddObject(module, "Symbol", (PyObject *)&SymbolType);
- Py_INCREF(&PathType);
+ Py_INCREF((PyObject *)&PathType);
PyModule_AddObject(module, "Path", (PyObject *)&PathType);
- Py_INCREF(&TermType);
+ Py_INCREF((PyObject *)&TermType);
PyModule_AddObject(module, "Term", (PyObject *)&TermType);
- Py_INCREF(&CodeType);
+ Py_INCREF((PyObject *)&CodeType);
PyModule_AddObject(module, "Code", (PyObject *)&CodeType);

return true;
@@ -28,7 +28,7 @@
{
if (PyType_Ready(&TermType) < 0)
return false;
- Py_INCREF(&TermType);
+ Py_INCREF((PyObject *)&TermType);
PyModule_AddObject(module, "Term", (PyObject *)&TermType);

return true;

--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages