
noreply at mythtv
Jul 15, 2012, 8:01 PM
Post #1 of 1
(44 views)
Permalink
|
|
mythtv branch master updated by wagnerrp. v0.26-pre-889-g6f63799
|
|
The branch, master has been updated on the mythtv repository by gitolite user wagnerrp. via 6f637994ba1222a84e58aef256761c598fc4d422 (commit) from 4b4c57e14ed10a9e3c509494fd4391c26facac38 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6f637994ba1222a84e58aef256761c598fc4d422 Author: Raymond Wagner <rwagner [at] mythtv> at Sun, 15 Jul 2012 22:59:32 -0400 Committer: Raymond Wagner <rwagner [at] mythtv> at Sun, 15 Jul 2012 22:59:32 -0400 URL: http://code.mythtv.org/cgit/mythtv/commit/?id=6f637994ba1222a84e58aef256761c598fc4d422 Add timezone awareness to datetime class. This is going to break some stuff until I figure out what all needs to be handled as local or UTC. This also moves the contents of 'utility.py' into a separate folder, and splits it up into several files. ----------------------------------------------------------------------- Summary of changes: mythtv/bindings/python/MythTV/altdict.py | 2 +- mythtv/bindings/python/MythTV/database.py | 4 +- mythtv/bindings/python/MythTV/utility.py | 1303 -------------------- mythtv/bindings/python/MythTV/utility/__init__.py | 7 + .../bindings/python/MythTV/utility/dequebuffer.py | 356 ++++++ mythtv/bindings/python/MythTV/utility/dt.py | 145 +++ mythtv/bindings/python/MythTV/utility/enum.py | 103 ++ mythtv/bindings/python/MythTV/utility/mixin.py | 275 ++++ mythtv/bindings/python/MythTV/utility/other.py | 602 +++++++++ mythtv/bindings/python/MythTV/utility/singleton.py | 74 ++ 10 files changed, 1566 insertions(+), 1305 deletions(-) delete mode 100644 mythtv/bindings/python/MythTV/utility.py create mode 100644 mythtv/bindings/python/MythTV/utility/__init__.py create mode 100644 mythtv/bindings/python/MythTV/utility/dequebuffer.py create mode 100644 mythtv/bindings/python/MythTV/utility/dt.py create mode 100644 mythtv/bindings/python/MythTV/utility/enum.py create mode 100644 mythtv/bindings/python/MythTV/utility/mixin.py create mode 100644 mythtv/bindings/python/MythTV/utility/other.py create mode 100644 mythtv/bindings/python/MythTV/utility/singleton.py -- _______________________________________________ mythtv-commits mailing list mythtv-commits [at] mythtv http://www.mythtv.org/mailman/listinfo/mythtv-commits
|