Update of /cvsroot/pypgsql/pypgsql
In directory usw-pr-cvs1:/tmp/cvs-serv14160
Modified Files:
libpqmodule.c
Log Message:
21APR2002 gh Removed special escaping of control characters in arrays.
Index: libpqmodule.c
===================================================================
RCS file: /cvsroot/pypgsql/pypgsql/libpqmodule.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** libpqmodule.c 4 Feb 2002 02:09:52 -0000 1.22
--- libpqmodule.c 21 Apr 2002 20:36:06 -0000 1.23
***************
*** 32,35 ****
--- 32,37 ----
| Date Ini Description |
| --------- --- ------------------------------------------------------- |
+ | 21APR2002 gh Removed special escaping of control characters in |
+ | arrays. |
| 03FEB2002 bga Added code to support the PG_ACLTIEM and PG_MACADDR oid |
| numbers [Bug #510244]. |
***************
*** 267,276 ****
byte = (unsigned char)sin[i];
sout[j++] = '\\';
- if (forArray)
- {
- sout[j++] = '\\';
- sout[j++] = '\\';
- sout[j++] = '\\';
- }
sout[j++] = DIG((byte >> 6) & 3);
sout[j++] = DIG((byte >> 3) & 7);
--- 269,272 ----
|