* 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().
This commit is contained in:
Guido van Rossum 1993-11-03 15:01:26 +00:00
parent 78ed420314
commit e77a757094
5 changed files with 101 additions and 36 deletions

View file

@ -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];