~ubuntu-branches/ubuntu/quantal/swig2.0/quantal

« back to all changes in this revision

Viewing changes to Lib/python/pyopers.swg

  • Committer: Package Import Robot
  • Author(s): Stefano Rivera
  • Date: 2012-06-01 17:05:17 UTC
  • mfrom: (1.1.6) (10.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20120601170517-q0ik32ij61i4r6f0
Tags: 2.0.7-2ubuntu1
* Merge from Debian unstable (LP: #1006387). Remaining changes:
  - Drop libchicken-dev from the build-depends (in universe).

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
%rename(__invert__)     *::operator~;
124
124
%feature("python:slot", "nb_invert", functype="unaryfunc") *::operator~;
125
125
%rename(__call__)       *::operator();
126
 
%feature("python:slot", "tp_call", functype="ternaryfunc") *::operator();
 
126
%feature("python:slot", "tp_call", functype="ternarycallfunc") *::operator();
127
127
 
128
128
#if defined(SWIGPYTHON_BUILTIN)
129
129
%pybinoperator(__nonzero__,   *::operator bool,         inquiry, nb_nonzero);