<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -80,10 +80,8 @@ class TzTime
     
     # Makes any raw Time object see itself as UTC
     def strip_time_zone(time)
-      time = time.to_time.to_a
-      time.pop
-      time &lt;&lt; &quot;UTC&quot;
-      Time.utc(*time)
+      time = time.to_time
+      Time.utc(time.year, time.month, time.day, time.hour, time.min, time.sec, time.usec)
     end
   end
 </diff>
      <filename>lib/tz_time.rb</filename>
    </modified>
    <modified>
      <diff>@@ -26,4 +26,9 @@ class TzTimeTest &lt; Test::Unit::TestCase
     time = TzTime.local(1998, 11, 13, 15, 39)
     assert_equal time, TzTime.at(time)
   end
+  
+  def test_at_should_not_strip_usecs
+    time = TzTime.local(1998, 11, 13, 15, 39, 27, 3500)
+    assert_equal time, TzTime.at(time)
+  end
 end</diff>
      <filename>test/tz_time_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3d8cd7899f67ca0c1c03695103713be8464d0afc</id>
    </parent>
  </parents>
  <author>
    <name>Jon Leighton</name>
    <email>j@jonathanleighton.com</email>
  </author>
  <url>http://github.com/jonleighton/tz_time/commit/598bdbecabb0b78736bfa6fce47b87c45b09e2fd</url>
  <id>598bdbecabb0b78736bfa6fce47b87c45b09e2fd</id>
  <committed-date>2008-04-11T05:17:51-07:00</committed-date>
  <authored-date>2008-04-11T05:17:51-07:00</authored-date>
  <message>When stripping the time zone, we don't want to lose the usecs</message>
  <tree>4d45ee6fcfa6c6b00538d1aa221f761f57e72371</tree>
  <committer>
    <name>Jon Leighton</name>
    <email>j@jonathanleighton.com</email>
  </committer>
</commit>
