Message206460
> Are all the functions that use "Object" to indicate "Unicode object instead
> of string" new in 3.4? Of those, how many are undocumented?
Following 5 functions work with PyObject* filenames and have Object-less
variants which works with char * filenames:
Python/errors.c:PyErr_SetFromErrnoWithFilenameObject
Python/import.c:PyImport_AddModuleObject
Python/import.c:PyImport_ExecCodeModuleObject
Python/import.c:PyImport_ImportFrozenModuleObject
Python/import.c:PyImport_ImportModuleLevelObject
Private _PyImport_FixupExtensionObject and _PyImport_FindExtensionObject have
no Object-less variants.
All other *Object functions are unrelated. |
|
| Date |
User |
Action |
Args |
| 2013-12-17 15:16:12 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, georg.brandl, ncoghlan, larry, Arfrever, eric.snow |
| 2013-12-17 15:16:12 | serhiy.storchaka | link | issue19518 messages |
| 2013-12-17 15:16:12 | serhiy.storchaka | create | |
|