view @pyobject/char.m @ 386:668fcb0f68ef

Fix extraction of class name for Python types without a module (fixes issue #79) * oct-py-util.cc (pytave::py_object_class_name): Handle object types with __module__ set to None, just return the value of __name__. * __py_struct_from_dict__.cc (F__py_class_name__): Add test case.
author Mike Miller <mtmiller@octave.org>
date Mon, 03 Apr 2017 08:30:20 -0700
parents 087e7bc3697f
children
line wrap: on
line source

## Copyright (C) 2016 Mike Miller
##
## This file is part of Pytave.
##
## Pytave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by the
## Free Software Foundation; either version 3 of the License, or (at your
## option) any later version.
##
## Pytave is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
## for more details.
##
## You should have received a copy of the GNU General Public License
## along with Pytave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @documentencoding UTF-8
## @defmethod @@pyobject char (@var{x})
## Conversion method to string.
##
## Example:
## @example
## @group
## s = pyobject ("hello world");
## char (s)
##       @result{} hello world
## @end group
## @end example
## @seealso{@@pyobject/disp}
## @end defmethod

function s = char (x)

  s = __py_string_value__ (x);

endfunction