[Python-checkins] r75332 - peps/trunk/pep-0390.txt

tarek.ziade python-checkins at python.org
Sun Oct 11 02:00:42 CEST 2009


Author: tarek.ziade
Date: Sun Oct 11 02:00:42 2009
New Revision: 75332

Log:
using '=' (even if ':' works in configparser)

Modified:
   peps/trunk/pep-0390.txt

Modified: peps/trunk/pep-0390.txt
==============================================================================
--- peps/trunk/pep-0390.txt	(original)
+++ peps/trunk/pep-0390.txt	Sun Oct 11 02:00:42 2009
@@ -75,17 +75,17 @@
    version = 0.6.4
 
    [metadata:sys_platform == 'win32']
-   requires: pywin32
-   requires: bar > 1.0
+   requires = pywin32
+   requires = bar > 1.0
 
    [metadata:os_machine == 'i386']
-   requires: foo
+   requires = foo
 
    [metadata:python_version == '2.4' or python_version == '2.5']
-   requires: bar
+   requires = bar
 
    [metadata:'linux' in sys_platform]
-   requires: baz
+   requires = baz
 
 Every ``[metadata:condition]`` section will be used only if the condition
 is met when the file is read. The background motivation for these


More information about the Python-checkins mailing list