diff options
author | Guido van Rossum <guido@python.org> | 1993-11-03 15:01:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-03 15:01:26 (GMT) |
commit | e77a757094f68351f336044654cd91575c677896 (patch) | |
tree | 0c0f8f78c180d4a88c9c5ff8c26e2457b6722e28 /Modules/config.c.in | |
parent | 78ed420314876083b4cc1739d7dbf04e4f012c03 (diff) | |
download | cpython-e77a757094f68351f336044654cd91575c677896.zip cpython-e77a757094f68351f336044654cd91575c677896.tar.gz cpython-e77a757094f68351f336044654cd91575c677896.tar.bz2 |
* nismodule.c: database keys and values can contain null bytes. be more
careful about these.
* arraymodule.c: added 8 byte swap; added 'i' format character; added
reverse() method; rename read/write to fromfile/tofile.
* config.c: Set version to 0.9.9++.
* rotormodule.c (r_rand): declare k1..k5 as unsigned longs so the shifts
will have a well-defined effect independent of word size.
* bltinmodule.c: renamed bagof() to filter().
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index fc80362..c9f56ac 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -62,12 +62,12 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "patchlevel.h" -#define VERSION "0.9.%d (%s)" +#define VERSION "0.9.%d++ (%s)" #ifdef __DATE__ #define DATE __DATE__ #else -#define DATE ">= 29 Jul 1993" +#define DATE ">= 3 Nov 1993" #endif char version[80]; |