diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-04-24 19:01:38 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-04-24 19:01:38 +0200 |
| commit | 55eaca76738417f719c1e3b66da94c7307308d74 (patch) | |
| tree | c5a94085f22c64e9435c2cae2386cd64e1b16c53 /python/tag.cc | |
| parent | aa5b58b56b7e332d15e6ac9f3dfeffa60c2749a6 (diff) | |
| download | python-apt-55eaca76738417f719c1e3b66da94c7307308d74.tar.gz | |
* python/*.cc: Fix build failures with python2.4-dbg.
Diffstat (limited to 'python/tag.cc')
| -rw-r--r-- | python/tag.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tag.cc b/python/tag.cc index 007a6122..bc23e98b 100644 --- a/python/tag.cc +++ b/python/tag.cc @@ -393,7 +393,7 @@ PySequenceMethods TagSecSeqMeth = {0,0,0,0,0,0,0,TagSecContains,0,0}; PyMappingMethods TagSecMapMeth = {TagSecLength,TagSecMap,0}; -static const char *doc_TagSec = "TagSection(text) -> Create a new object.\n\n" +static char *doc_TagSec = "TagSection(text) -> Create a new object.\n\n" "TagSection() objects provide methods to access rfc822-style formatted\n" "header sections, like those in debian/control or Packages files.\n\n" "TagSection() behave like read-only dictionaries and also provide access\n" @@ -467,7 +467,7 @@ static PyGetSetDef TagFileGetSet[] = { {} }; -static const char *doc_TagFile = "TagFile(file) -> TagFile() object. \n\n" +static char *doc_TagFile = "TagFile(file) -> TagFile() object. \n\n" "TagFile() objects provide access to debian control files, which consists\n" "of multiple RFC822-like formatted sections.\n\n" "A file may consists of multiple sections, and you can use Step() to move\n" |
