Author: dylan
Date: 2004-12-16 21:55:08 -0500 (Thu, 16 Dec 2004)
New Revision: 420
Modified:
trunk/docs/guidelines.txt
Log:
Don't use "new" for POE sessions.
Modified: trunk/docs/guidelines.txt
===================================================================
--- trunk/docs/guidelines.txt 2004-12-16 18:00:31 UTC (rev 419)
+++ trunk/docs/guidelines.txt 2004-12-17 02:55:08 UTC (rev 420)
@@ -21,6 +21,9 @@
GOOD: foo => 'bar', baz => 'quux'
BAD: foo => bar => baz => 'quux' <-- this confuses the hell out of me.
+* POE
+ * "new" methods must *always* return new objects.
+ Name methods that spawn POE session "create", please.
* Variables
* Variable names should be easy to grok.