Daniel Urban <urban.dani...@gmail.com> added the comment: > The point is that your implementation doesn't allow people to generate > 'Z'-ending timestamp if they need a subset of rfc3339.
That is exactly right. Do you have any suggestion, how to do that? Maybe an optional argument to the rfcformat method? Something like: def new_rfcformat(self, default_utcoffset='-00:00'): if we_know_the_utc_offset: return self.rfcformat() # the method in my current patch else: return self.isoformat() + default_utcoffset This way, if somebody want 'Z' instead of '-00:00', just calls the method like this: d.new_rfcformat('Z') Though this way '+00:00' wouldn't get replaced by 'Z'. Any suggestions? ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue7584> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com