#10365: timedelta doesn't recognize Sage integers
--------------------------------+-------------------------------------------
   Reporter:  jason             |       Owner:  AlexGhitza
       Type:  defect            |      Status:  new       
   Priority:  major             |   Milestone:  sage-4.6.1
  Component:  basic arithmetic  |    Keywords:            
     Author:                    |    Upstream:  N/A       
   Reviewer:                    |      Merged:            
Work_issues:                    |  
--------------------------------+-------------------------------------------
 This gives an error:
 {{{
 sage: version()
 'Sage Version 4.6, Release Date: 2010-10-30'
 sage: import datetime
 sage: datetime.timedelta(hours=6)
 ---------------------------------------------------------------------------
 TypeError                                 Traceback (most recent call
 last)

 /Users/grout/<ipython console> in <module>()

 TypeError: unsupported type for timedelta hours component:
 sage.rings.integer.Integer

 }}}

 but this does not

 {{{
 sage: datetime.timedelta(hours=int(6))
 datetime.timedelta(0, 21600)
 }}}

 Is this possible to fix without patching Python?

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/10365>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to