[Python-checkins] python/dist/src/Modules gdbmmodule.c,2.35,2.36

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Wed Jul 7 16:19:12 CEST 2004


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9854

Modified Files:
	gdbmmodule.c 
Log Message:
[Bug #982806] The default argument for opening GDBM files is bogus.  Patch #984672 by James Lamanna

Index: gdbmmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/gdbmmodule.c,v
retrieving revision 2.35
retrieving revision 2.36
diff -C2 -d -r2.35 -r2.36
*** gdbmmodule.c	2 Aug 2002 02:27:13 -0000	2.35
--- gdbmmodule.c	7 Jul 2004 14:19:09 -0000	2.36
***************
*** 435,439 ****
  {
      char *name;
!     char *flags = "r ";
      int iflags;
      int mode = 0666;
--- 435,439 ----
  {
      char *name;
!     char *flags = "r";
      int iflags;
      int mode = 0666;



More information about the Python-checkins mailing list