]> granicus.if.org Git - python/commit
Use correct function name to PyArg_ParseTuple("is_package").
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 17 Feb 2003 18:05:20 +0000 (18:05 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 17 Feb 2003 18:05:20 +0000 (18:05 +0000)
commit5c1ba53f8ca219a22d964324abb76a055ad19feb
treee1778b086fc50fbfd794660240afd6962d3424b7
parent946c19445c902d68ccd75452b97a8098e9b212e5
Use correct function name to PyArg_ParseTuple("is_package").

Fix off-by-1 error in normalize_line_endings():
  when *p == '\0' the NUL was copied into q and q was auto-incremented,
  the loop was broken out of,
  then a newline was appended followed by a NUL.
  So the function, in effect, was strcpy() but added two extra chars
  which was caught by obmalloc in debug mode, since there was only
  room for 1 additional newline.

Get test working under regrtest (added test_main).
Lib/test/test_zipimport.py
Modules/zipimport.c