Changes between Version 1 and Version 2 of AjaxHelpers
- Timestamp:
- Jun 29, 2007, 6:14:55 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AjaxHelpers
v1 v2 47 47 * Used exec to do the parameter parsing. So people may not like it, but this was the quickest way I could think of. External parameter is exec-ed only within a function argument: 48 48 49 {{{ 49 50 def argparser(*args, **kws): 50 51 return args, kws 51 52 exec("args, kws=argparser("+param+")") 53 }}} 52 54 53 55 I could not think of any malicious thing to do in function argument but probably there are many. Please let me know.