Ignore:
Timestamp:
11/07/10 01:52:08 (13 years ago)
Author:
atzm
Message:
  • fix document
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pymigemo/pymigemo.c

    r36 r37  
    11/* 
    2  * pymigemo.c - C/Migemo wrapper for Python 
     2 * pymigemo.c - C/Migemo Python binding 
    33 * Copyright(C) 2005-2009, Atzm WATANABE <atzm@atzm.org> 
    44 * 
     
    332332  dict_file: path to dictionary file (str)\n\ 
    333333\n\ 
    334   returns: boolean value"}, 
     334  returns: ID of loaded dictionary"}, 
    335335    {"is_enable", (PyCFunction)Migemo_is_enable, METH_NOARGS, 
    336336     "check internal migemo_dict\n\ 
     
    372372    0,                          /*tp_as_buffer*/ 
    373373    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/ 
    374     "Migemo wrapper object",    /* tp_doc */ 
     374    "",                         /* tp_doc */ 
    375375    0,                          /* tp_traverse */ 
    376376    0,                          /* tp_clear */ 
     
    407407        return; 
    408408 
    409     m = Py_InitModule3("migemo", module_methods, "C/Migemo wrapper"); 
     409    m = Py_InitModule3("migemo", module_methods, "C/Migemo Python binding"); 
    410410 
    411411    Py_INCREF(&MigemoType); 
Note: See TracChangeset for help on using the changeset viewer.