SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S

1
(3)
2
(3)
3
(2)
4
(9)
5
(4)
6
7
(1)
8
(5)
9
(3)
10
(2)
11
12
13
14
(4)
15
16
17
18
(1)
19
20
21
22
(4)
23
(1)
24
(6)
25
(7)
26
(1)
27
28
(1)
29
(5)
30
(6)
31
(10)



Showing 3 results of 3

From: John H. <jdh...@ac...> - 2005年08月09日 23:39:33
>>>>> "Charles" == Charles Moad <cm...@in...> writes:
 Charles> I have a project that I am wanting to use the blitting
 Charles> for the tkagg and I want to test on windows. I don't
 Charles> have a build environment for it. If it is too much
 Charles> trouble, it is not a big deal.
OK, the build is at
 http://jdh.uchicago.edu/misc/matplotlib-0.84cvs.win32-py2.4.exe
Thanks for your help on this.
JDH
From: Maria K. <mar...@ut...> - 2005年08月09日 22:05:15
Hi,
I finally found out what was happening with the method. I was setting the
interval argument for DayLocator to zero by mistake. This is what causes the
infinite loop to happen. 
i.e. the following code will triger the infinite loop:
import matplotlib
from matplotlib.dates import DayLocator
d = DayLocator(interval=0)
from matplotlib.figure import Figure
fig = Figure()
ax = fig.gca()
ax.plot([732165.65085648152, 732166.22956018522], [2, 5])
ax.xaxis.set_major_locator(d)
ax.autoscale_view()
Thanks,
Maria Khomenko
From: Maria K. <mar...@ut...> - 2005年08月09日 22:05:14
Hi,
I am having a problem with matplotlib. I am plotting two data points on a graph
and after setting up my locators (DayLocator), I am calling autoscale_view() on
the axis and the function ends up in the infinite loop. I am trying to come up
with with a short case that will trigger the problem at the moment but it's a
web process and isn't very easy to trace. The following is the function where
the infinite loop happens. I am having a bit of trouble tracing through it and
figuring out what exactly causes it to be in the inifinite loop.
Thanks,
Maria Khomenko
This is the functon (in /dateutils/rrule.py, class rrule)
def _iter(self):
 year, month, day, hour, minute, second, weekday, yearday, _ = \
 self._dtstart.timetuple()
 # Some local variables to speed things up a bit
 freq = self._freq
 interval = self._interval
 wkst = self._wkst
 until = self._until
 bymonth = self._bymonth
 byweekno = self._byweekno
 byyearday = self._byyearday
 byweekday = self._byweekday
 byeaster = self._byeaster
 bymonthday = self._bymonthday
 bynmonthday = self._bynmonthday
 bysetpos = self._bysetpos
 byhour = self._byhour
 byminute = self._byminute
 bysecond = self._bysecond
 ii = _iterinfo(self)
 ii.rebuild(year, month)
 getdayset = {YEARLY:ii.ydayset,
 MONTHLY:ii.mdayset,
 WEEKLY:ii.wdayset,
 DAILY:ii.ddayset,
 HOURLY:ii.ddayset,
 MINUTELY:ii.ddayset,
 SECONDLY:ii.ddayset}[freq]
 
 if freq < HOURLY:
 timeset = self._timeset
 else:
 gettimeset = {HOURLY:ii.htimeset,
 MINUTELY:ii.mtimeset,
 SECONDLY:ii.stimeset}[freq]
 if ((freq >= HOURLY and
 self._byhour and hour not in self._byhour) or
 (freq >= MINUTELY and
 self._byminute and minute not in self._byminute) or
 (freq >= SECONDLY and
 self._bysecond and minute not in self._bysecond)):
 timeset = ()
 else:
 timeset = gettimeset(hour, minute, second)
 total = 0
 count = self._count
 while True:
 # Get dayset with the right frequency
 dayset, start, end = getdayset(year, month, day)
 # Do the "hard" work ;-)
 filtered = False
 for i in dayset[start:end]:
 if ((bymonth and ii.mmask[i] not in bymonth) or
 (byweekno and not ii.wnomask[i]) or
 (byyearday and (i%ii.yearlen)+1 not in byyearday) or
 (byweekday and ii.wdaymask[i] not in byweekday) or
 (ii.nwdaymask and not ii.nwdaymask[i]) or
 (byeaster and not ii.eastermask[i]) or
 ((bymonthday or bynmonthday) and
 ii.mdaymask[i] not in bymonthday and
 ii.nmdaymask[i] not in bynmonthday)):
 dayset[i] = None
 filtered = True
 # Output results
 if bysetpos and timeset:
 poslist = []
 for pos in bysetpos:
 if pos < 0:
 daypos, timepos = divmod(pos, len(timeset))
 else:
 daypos, timepos = divmod(pos-1, len(timeset))
 try:
 i = [x for x in dayset[start:end]
 if x is not None][daypos]
 time = timeset[timepos]
 except IndexError:
 pass
 else:
 date = datetime.date.fromordinal(ii.yearordinal+i)
 res = datetime.datetime.combine(date, time)
 if res not in poslist:
 poslist.append(res)
 poslist.sort()
 for res in poslist:
 if until and res > until:
 self._len = total
 return
 elif res >= self._dtstart:
 total += 1
 yield res
 if count:
 count -= 1
 if not count:
 self._len = total
 return
 else:
 for i in dayset[start:end]:
 if i is not None:
 date = datetime.date.fromordinal(ii.yearordinal+i)
 for time in timeset:
 res = datetime.datetime.combine(date, time)
 if until and res > until:
 self._len = total
 return
 elif res >= self._dtstart:
 total += 1
 yield res
 if count:
 count -= 1
 if not count:
 self._len = total
 return
 # Handle frequency and interval
 fixday = False
 if freq == YEARLY:
 year += interval
 if year > datetime.MAXYEAR:
 self._len = total
 return
 ii.rebuild(year, month)
 elif freq == MONTHLY:
 month += interval
 if month > 12:
 div, mod = divmod(month, 12)
 month = mod
 year += div
 if month == 0:
 month = 12
 year -= 1
 if year > datetime.MAXYEAR:
 self._len = total
 return
 ii.rebuild(year, month)
 elif freq == WEEKLY:
 if wkst > weekday:
 day += -(weekday+1+(6-wkst))+self._interval*7
 else:
 day += -(weekday-wkst)+self._interval*7
 weekday = wkst
 fixday = True
 elif freq == DAILY:
 day += interval
 fixday = True
 elif freq == HOURLY:
 if filtered:
 # Jump to one iteration before next day
 hour += ((23-hour)//interval)*interval
 while True:
 hour += interval
 div, mod = divmod(hour, 24)
 if div:
 hour = mod
 day += div
 fixday = True
 if not byhour or hour in byhour:
 break
 timeset = gettimeset(hour, minute, second)
 elif freq == MINUTELY:
 if filtered:
 # Jump to one iteration before next day
 minute += ((1439-(hour*60+minute))//interval)*interval
 while True:
 minute += interval
 div, mod = divmod(minute, 60)
 if div:
 minute = mod
 hour += div
 div, mod = divmod(hour, 24)
 if div:
 hour = mod
 day += div
 fixday = True
 filtered = False
 if ((not byhour or hour in byhour) and
 (not byminute or minute in byminute)):
 break
 timeset = gettimeset(hour, minute, second)
 elif freq == SECONDLY:
 if filtered:
 # Jump to one iteration before next day
 second += (((86399-(hour*3600+minute*60+second))
 //interval)*interval)
 while True:
 second += self._interval
 div, mod = divmod(second, 60)
 if div:
 second = mod
 minute += div
 div, mod = divmod(minute, 60)
 if div:
 minute = mod
 hour += div
 div, mod = divmod(hour, 24)
 if div:
 hour = mod
 day += div
 fixday = True
 if ((not byhour or hour in byhour) and
 (not byminute or minute in byminute) and
 (not bysecond or second in bysecond)):
 break
 timeset = gettimeset(hour, minute, second)
 if fixday and day > 28:
 daysinmonth = calendar.monthrange(year, month)[1]
 if day > daysinmonth:
 while day > daysinmonth:
 day -= daysinmonth
 month += 1
 if month == 13:
 month = 1
 year += 1
 if year > datetime.MAXYEAR:
 self._len = total
 return
 daysinmonth = calendar.monthrange(year, month)[1]
 ii.rebuild(year, month)

Showing 3 results of 3

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /