473,386 Members | 1,779 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

None returned?

I can't figure out -what- is going wrong here. When the code reaches
the 'return' line, there is data to be returned, but when it exits out
to the calling function, 'None' is returned!

import mx.DateTime

def get_weeks(weeks, year, dates, date_list={}):
if dates.has_key(year):
date_list[year] = dates[year].keys()[-weeks:]
if len(dates[year].keys()) >= weeks:
return date_list
else:
weeks = weeks - len(dates[year].keys())
get_weeks(weeks, str(int(year) -1), dates, date_list)

def get_report_dates(weeks, dates):
today = mx.DateTime.now()
this_week = today.iso_week[1]
rpt_dates = get_weeks(weeks, str(today.year), dates)
print rpt_dates

def main():

dates = {'2006': {'50': [50, 'This is the 50th week'],
'51': [51, 'This is the 51st week'],
'52': [52, 'This is the 52nd week']},
'2007': {'25': [1, 'This is the 1st week'],
'26': [2, 'This is the 2nd week'],
'27': [3, 'This is the 3rd week'],
'28': [4, 'This is the 4th week'],
'29': [5, 'This is the 5th week']}}

get_report_dates(6, dates)

Jul 5 '07 #1
2 1051
On 7/5/07, ro**********@gmail.com <ro**********@gmail.comwrote:
I can't figure out -what- is going wrong here. When the code reaches
the 'return' line, there is data to be returned, but when it exits out
to the calling function, 'None' is returned!

import mx.DateTime

def get_weeks(weeks, year, dates, date_list={}):
if dates.has_key(year):
date_list[year] = dates[year].keys()[-weeks:]
if len(dates[year].keys()) >= weeks:
return date_list
else:
weeks = weeks - len(dates[year].keys())
Right here.
get_weeks(weeks, str(int(year) -1), dates, date_list)
You have to change that line to:
return get_weeks(weeks, str(int(year) -1), dates, date_list)

Otherwise, if len(dates[year.keys()) < weeks, it doesn't return anything.
>
def get_report_dates(weeks, dates):
today = mx.DateTime.now()
this_week = today.iso_week[1]
rpt_dates = get_weeks(weeks, str(today.year), dates)
print rpt_dates

def main():

dates = {'2006': {'50': [50, 'This is the 50th week'],
'51': [51, 'This is the 51st week'],
'52': [52, 'This is the 52nd week']},
'2007': {'25': [1, 'This is the 1st week'],
'26': [2, 'This is the 2nd week'],
'27': [3, 'This is the 3rd week'],
'28': [4, 'This is the 4th week'],
'29': [5, 'This is the 5th week']}}

get_report_dates(6, dates)

--
http://mail.python.org/mailman/listinfo/python-list

--
Kelvie
Jul 6 '07 #2
ro**********@gmail.com wrote:
I can't figure out -what- is going wrong here. When the code reaches
the 'return' line, there is data to be returned, but when it exits out
to the calling function, 'None' is returned!

import mx.DateTime

def get_weeks(weeks, year, dates, date_list={}):
if dates.has_key(year):
date_list[year] = dates[year].keys()[-weeks:]
if len(dates[year].keys()) >= weeks:
return date_list
else:
weeks = weeks - len(dates[year].keys())
get_weeks(weeks, str(int(year) -1), dates, date_list)
So if the else branch is taken here you end up dropping of the end of
the function's code, which will return None.
def get_report_dates(weeks, dates):
today = mx.DateTime.now()
this_week = today.iso_week[1]
rpt_dates = get_weeks(weeks, str(today.year), dates)
print rpt_dates

def main():

dates = {'2006': {'50': [50, 'This is the 50th week'],
'51': [51, 'This is the 51st week'],
'52': [52, 'This is the 52nd week']},
'2007': {'25': [1, 'This is the 1st week'],
'26': [2, 'This is the 2nd week'],
'27': [3, 'This is the 3rd week'],
'28': [4, 'This is the 4th week'],
'29': [5, 'This is the 5th week']}}

get_report_dates(6, dates)
regards
Steve
--
Steve Holden +1 571 484 6266 +1 800 494 3119
Holden Web LLC/Ltd http://www.holdenweb.com
Skype: holdenweb http://del.icio.us/steve.holden
--------------- Asciimercial ------------------
Get on the web: Blog, lens and tag the Internet
Many services currently offer free registration
----------- Thank You for Reading -------------

Jul 6 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
by: M-a-S | last post by:
Can anybody explain this: Python 2.3 (#46, Jul 29 2003, 18:54:32) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> >>> None = 3 <stdin>:1: SyntaxWarning:...
47
by: Martin DeMello | last post by:
It seems to be a fairly common pattern for an object-modifying method to return None - however, this is often quite inconvenient. For instance def f(lst1, lst2): g((lst1 + lst2).reverse()) #...
35
by: Steven Bethard | last post by:
I have lists containing values that are all either True, False or None, e.g.: etc. For a given list: * If all values are None, the function should return None.
3
by: noahlt | last post by:
I'm trying to write a website updating script, but when I run the script, my function to search the DOM tree returns None instead of what it should. I have this program: -------- import sys...
5
by: z. f. | last post by:
sorry about the previous post, by mistake not completed. i have an asp.net page with the line <%@ OutputCache Duration="30" VaryByParam="none" %> but when i make requests to the page with...
12
by: Raymond Hettinger | last post by:
I am evaluating a request for an alternate version of itertools.izip() that has a None fill-in feature like the built-in map function: >>> map(None, 'abc', '12345') # demonstrate map's None...
0
by: Corey Wallis | last post by:
Dear All, I'm currently working on a project that needs to collect the output of the JHOVE application. More information about the application is available at this website: ...
8
by: sam | last post by:
i am starting to experiment with recursion, and decided to write a fairly trivial little program which took a float as input, then called a function to halve it recursively until it was less than...
15
by: Paddy | last post by:
Iam wondering why the peculiar behavior of map when the function in given as None: Help on built-in function map in module __builtin__: map(...) map(function, sequence) -list Return a list...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.