Revision: 361
http://rpy.svn.sourceforge.net/rpy/?rev=361&view=rev
Author: warnes
Date: 2007-10-18 12:40:51 -0700 (Thu, 18 Oct 2007)
Log Message:
-----------
More fixes for handling of Unicode strings. Suggested by Toby Dylan Hocking.
Modified Paths:
--------------
trunk/rpy/src/rpymodule.c
Modified: trunk/rpy/src/rpymodule.c
===================================================================
--- trunk/rpy/src/rpymodule.c 2007-10-18 02:40:37 UTC (rev 360)
+++ trunk/rpy/src/rpymodule.c 2007-10-18 19:40:51 UTC (rev 361)
@@ -182,6 +182,8 @@
return ANY_T;
else if (PyString_Check(obj))
return STRING_T;
+ else if (PyUnicode_Check(obj))
+ return STRING_T;
else if (Robj_Check(obj))
return ROBJ_T;
else
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
rpy-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/rpy-list