[Show "Revision History"] [Show "General Page Infos"] [Show "Page hits and edits"]

Revision History

Showing page edit history entries from 43 to 142 out of 142 entries total. (5 | 10 | 25 | 50 | 100 | 200 items per page)

142 42 Older
# Date Size Editor Comment Action
136 2017-07-04 09:44:35 78270 to previous mjpieters The "sublime singleton" example is fatally flawed and can't work (you can't put __call__ on an instance). view
135 2017-04-16 08:46:49 78784 to previous GeorgeFischhof   view
134 2017-04-14 13:54:05 78767 to previous GeorgeFischhof   view
133 2017-04-14 12:30:58 78377 to previous GeorgeFischhof   view
132 2016-11-24 16:13:07 74773 to previous SteveHolden Removed typo reported by Gaƫtan Harter gaetan.harter@inria.fr via python.org SH view
131 2016-04-15 18:07:42 74772 to previous brmscheiner added #!python for coloring in section 6 view
130 2016-04-15 18:02:41 74764 to previous brmscheiner Added alternate memoize that stores cache between executions. view
129 2016-02-05 12:40:03 70105 to previous mohaned magdy   view
128 2014-07-04 16:21:35 70106 to previous mjpieters Make the (ugly) property sample actually work; it is masking the built-in. view
127 2013-12-20 16:35:57 69979 to previous martineau Modified example showing way that doesn't require any new decorators to indicate changes needed also work in Py 3. view
126 2013-12-18 20:14:55 69911 to previous TTimo typo view
125 2013-09-04 20:27:35 69910 to previous JulianMehnle Add timeout decorator view
124 2013-09-04 19:27:48 68712 to previous JulianMehnle Formatting fixes view
123 2013-06-28 18:11:43 68713 to previous Nabuccodonosor   view
122 2013-06-27 14:02:28 68612 to previous tjanez Added a decorator for ignoring Deprecation Warnings. view
121 2013-06-26 21:51:34 67656 to previous GiovanniSimoni   view
120 2013-06-26 00:00:18 66726 to previous Nabuccodonosor   view
119 2013-06-25 23:56:39 66434 to previous Nabuccodonosor   view
118 2013-06-15 00:40:59 64450 to previous martineau   view
117 2013-05-15 03:46:33 64471 to previous gruben Added a version of a memoize decorator that respects args and kwargs view
116 2012-09-19 22:39:57 65070 to previous mmoroz wiki restore 2013-01-23 view
115 2012-06-24 07:09:07 64302 to previous wnpgmb014ww-ad06-171-119 Ok, last memoizer, promise ;-) view
114 2012-06-24 06:26:03 63727 to previous wnpgmb014ww-ad06-171-119 New memoizer view
113 2012-06-24 06:17:37 63305 to previous wnpgmb014ww-ad06-171-119 A simpler singleton decorator. view
112 2012-06-15 19:56:06 63126 to previous cpe-67-244-11-51 lazy thunkify view
111 2012-05-16 23:26:33 61023 to previous 46-246-17-124 just added not, without it there was assertion error view
110 2012-05-01 18:04:53 61022 to previous 68-114-55-73   view
109 2012-04-09 14:55:51 56878 to previous pool-96-241-213-35 Minor tweaks (use ``.format()`` instead of old ``%`` string formatting, use ``is`` for conditionals with ``True/False/None/number types``, etc. view
108 2012-03-06 04:27:34 56780 to previous c-24-11-59-1   view
107 2012-02-03 18:52:45 56800 to previous webproxy Improve document string for retry(). view
106 2012-02-03 16:43:06 56778 to previous webproxy math.floor() was used but math wasn't imported view
105 2011-11-17 14:20:13 56765 to previous megan Add syntax highlighting to all examples view
104 2011-06-17 12:53:23 56689 to previous mar92-17-78-228-212-60 new decorator proposal view
103 2011-06-08 11:52:04 54675 to previous ChristopherArndt Added cached_property decorator view
102 2011-03-25 10:47:49 52429 to previous 89-76-89-196 reverted to oryginal version view
101 2011-03-25 10:38:04 52448 to previous 89-76-89-196 fixed the singleton decorator by adding @staticmethod to singleton_new view
100 2011-02-14 12:40:06 52429 to previous 144   view
99 2011-02-14 12:38:11 52430 to previous 144   view
98 2011-02-14 11:52:11 52163 to previous 144   view
97 2011-02-14 10:24:25 51617 to previous 144   view
96 2011-02-14 10:22:44 51609 to previous 144 Added asynchronous call view
95 2011-01-12 14:22:16 50492 to previous 82   view
94 2011-01-12 13:29:44 49631 to previous 82   view
93 2011-01-12 13:26:47 49701 to previous 82   view
92 2011-01-12 13:25:21 49701 to previous 82   view
91 2010-11-15 07:53:36 47843 to previous 71-214-211-224 link for new page with decorator based state machine (tbi shortly) view
90 2010-08-18 21:34:00 47707 to previous rrcs-173-198-8-38 Making this a little closer to Pep8. view
89 2010-07-21 04:07:26 47648 to previous eth6155 fix the white space view
88 2010-07-21 04:05:45 47647 to previous eth6155 add support for memoizing instance methods view
87 2010-07-09 17:05:23 47504 to previous ns2 Added alternate (better) example of counting function calls decorator view
86 2010-07-08 01:32:32 46474 to previous 65   view
85 2010-06-02 09:29:41 46474 to previous wl-ol-s246-118   view
84 2010-04-27 13:50:21 46569 to previous 193 The last edited version didn't work because the decorated function would have been called everytime. view
83 2010-04-16 00:22:03 46496 to previous 203   view
82 2010-03-22 03:30:41 46381 to previous c-67-163-57-237 made the memoized function more pythonic by using setdefault in place of a try/except. view
81 2009-11-29 07:09:37 46454 to previous adsl-71-141-112-117   view
80 2009-10-22 20:00:20 46478 to previous s235-138   view
79 2009-10-05 17:45:09 46484 to previous 87-194-204-87   view
78 2009-02-19 23:20:44 45462 to previous adsl-69-228-190-230   view
77 2009-01-01 21:46:25 45375 to previous p5B252846   view
76 2009-01-01 08:42:27 45354 to previous adsl-68-124-65-35 despam view
75 2008-12-30 06:52:36 62 to previous 194 http://www.message_lirochi.com/ view
74 2008-12-06 15:32:52 45354 to previous SkipMontanaro undo spam view
73 2008-12-06 08:48:09 34 to previous loki lanogetch view
72 2008-11-15 13:59:54 45354 to previous localhost converted to 1.6 markup view
71 2008-08-06 14:37:22 45352 to previous 89 In smart deprecation decorator: tune first line to real function starting line. view
70 2008-08-06 14:30:00 45348 to previous 89 Added smart deprecation decorator view
69 2008-07-14 09:27:39 44447 to previous caramel Request example code conform with PEP 8. view
68 2008-07-10 14:29:39 44401 to previous et-1-29   view
67 2008-07-07 09:00:00 44363 to previous eth595 PEP 8 fixes for example code view
66 2008-05-18 22:33:20 44111 to previous cpc3-ward1-0-0-cust310 Forgot a class definitition view
65 2008-05-18 22:31:39 43584 to previous cpc3-ward1-0-0-cust310 Added too many equals around headings so they became italic. view
64 2008-05-18 22:30:04 43588 to previous cpc3-ward1-0-0-cust310 Added two decorators - logprintinfo and unimplemented - james+py@flatcloud.co.uk view
63 2008-05-06 01:07:02 42532 to previous h236 Retry decorator view
62 2007-11-01 15:30:39 40939 to previous c-69-143-127-222   view
61 2007-11-01 15:22:09 40893 to previous c-69-143-127-222   view
60 2007-08-11 23:06:58 35396 to previous cpe-68-173-174-55   view
59 2007-08-11 23:04:12 35194 to previous cpe-68-173-174-55   view
58 2007-03-21 01:54:23 35048 to previous 64 Adding state machine example - R.L. Drenth view
57 2006-11-09 13:27:08 21988 to previous CBL217-132-119-40   view
56 2006-08-01 00:11:43 22723 to previous cpe-66-69-212-186   view
55 2006-07-31 23:58:05 22722 to previous cpe-66-69-212-186   view
54 2006-07-31 15:08:20 22722 to previous cpe-66-69-212-186   view
53 2006-07-31 15:04:50 22773 to previous cpe-66-69-212-186   view
52 2006-06-20 10:18:18 21716 to previous ip70-171-19-75   view
51 2006-06-20 10:14:55 21710 to previous ip70-171-19-75   view
50 2006-06-19 22:31:09 21668 to previous 63-135-238-196   view
49 2006-06-18 16:32:01 21677 to previous 63-135-238-196   view
48 2006-06-18 15:55:36 21683 to previous 63-135-238-196   view
47 2006-06-18 15:52:44 21678 to previous 63-135-238-196   view
46 2006-06-18 08:42:46 21508 to previous 63-135-238-196   view
45 2006-06-18 07:48:55 21511 to previous 63-135-238-196   view
44 2006-06-18 07:46:37 21662 to previous 63-135-238-196   view
43 2006-06-18 07:45:53 21511 to previous 63-135-238-196   view
42 2006-06-18 07:36:45 21513 to previous 63-135-238-196   view
41 2006-06-18 07:12:53 21599 to previous 63-135-238-196   view
40 2006-06-18 06:47:50 21656 to previous 63-135-238-196   view
39 2006-04-10 21:32:47 17035 to previous 222-152-209-16   view
38 2005-12-05 22:09:36 16363 to previous rrcs-24-242-128-10   view
37 2005-07-23 13:59:15 16373 to previous SkipMontanaro no need for try/except - set() is a builtin in 2.4 and this page assumes '@' dec view
142 42 Older

Unable to edit the page? See the FrontPage for instructions.