Comment 4 for bug 397294

Revision history for this message
Olivier Dony (Odoo) (odo-openerp) wrote :

This is an upstream error from Python, and is not supported by OpenERP. Please report it upstream to the xmlrpclib developers.
Using strings should work fine, and is what OpenERP clients do by default.

If in doubt about the timezone and dateformat to use:
- For the formats, there are constants in the code, e.g. in server/tools
- For the timezone, keep in mind that all timestamps sent to the server must be expressed in the _server_'s timezone, not the timezone of the client. You can ask the server for its timezone by calling the common/timezone_get RPC method

Thanks!