[pypy-svn] r29048 - pypy/dist/pypy/doc

auc at codespeak.net auc at codespeak.net
Wed Jun 21 12:59:48 CEST 2006


Author: auc
Date: Wed Jun 21 12:59:45 2006
New Revision: 29048

Modified:
   pypy/dist/pypy/doc/howto-logicobjspace-0.9.txt
Log:
small fixes

Modified: pypy/dist/pypy/doc/howto-logicobjspace-0.9.txt
==============================================================================
--- pypy/dist/pypy/doc/howto-logicobjspace-0.9.txt	(original)
+++ pypy/dist/pypy/doc/howto-logicobjspace-0.9.txt	Wed Jun 21 12:59:45 2006
@@ -169,7 +169,7 @@
   objectspace, all operators make an implicit wait on their arguments)
 
 * wait_needed: this suspends the current thread until the variable
-  has received a wait message. It has to be used explicitely,
+  has received a wait message. It has to be used explicitly,
   typically by a producer thread that wants to produce data only when
   needed.
 
@@ -487,11 +487,14 @@
   case of this, DichotomyDistributor, for which N == 2, is also
   provided and is the default one.
 
-To explicitely specify a distributor for a constraint problem, you
+To explicitly specify a distributor for a constraint problem, you
 need to say, in the procedure that defines the problem::
 
   cs.set_distributor(NaiveDistributor())
 
+It is not possible currently to write distributors in pure Python;
+this is scheduled for PyPy version 1.
+
 Remaining space operators
 -------------------------
 
@@ -517,5 +520,6 @@
 
 * pypy-dist/pypy/objspace/constraint/applevel for the existing solver
   and some sample problems (I'm quite sure that the conference
-  scheduling problem is up to date wrt the current API).
+  scheduling problem is up to date wrt the current API, the others
+  likely lag behind).
 



More information about the Pypy-commit mailing list