[Checkins] SVN: z3c.form/trunk/src/z3c/form/field.txt Fix a fix from Aaron that I did not like. :-)

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Jul 31 16:48:10 EDT 2007


Log message for revision 78504:
  Fix a fix from Aaron that I did not like. :-)
  

Changed:
  U   z3c.form/trunk/src/z3c/form/field.txt

-=-
Modified: z3c.form/trunk/src/z3c/form/field.txt
===================================================================
--- z3c.form/trunk/src/z3c/form/field.txt	2007-07-31 15:39:27 UTC (rev 78503)
+++ z3c.form/trunk/src/z3c/form/field.txt	2007-07-31 20:48:09 UTC (rev 78504)
@@ -136,14 +136,14 @@
   >>> manager.keys()
   ['name', 'country']
 
-Again, you can solve name conflicts using the full prefixed name:
+Again, you can solve name conflicts using the full prefixed name, ...
 
   >>> manager = field.Fields(IPerson).omit('country')
   >>> manager += field.Fields(IPet, prefix='pet')
   >>> manager.omit('pet.id').keys()
   ['id', 'name', 'pet.name']
 
-using the prefix keyword argument:
+using the prefix keyword argument, ...
 
   >>> manager = field.Fields(IPerson).omit('country')
   >>> manager += field.Fields(IPet, prefix='pet')



More information about the Checkins mailing list