2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

- Lots of fixes in the documentation

- Fixed support for return_opaque_pointer policy


[SVN r18199]
This commit is contained in:
Bruno da Silva de Oliveira
2003-04-08 01:01:32 +00:00
parent f7f089d2d4
commit c7ea0aacd6
38 changed files with 294 additions and 114 deletions

View File

@@ -34,7 +34,10 @@ class MultipleCodeUnit(object):
def SetCurrent(self, code_unit_name):
'Changes the current code unit'
try:
codeunit = self.codeunits[code_unit_name]
if code_unit_name is not None:
codeunit = self.codeunits[code_unit_name]
else:
codeunit = None
except KeyError:
filename = self._FileName(code_unit_name)
function_name = self._FunctionName(code_unit_name)
@@ -52,19 +55,14 @@ class MultipleCodeUnit(object):
current = property(Current, SetCurrent)
def _CheckCurrent(self):
if self.current is None:
raise RuntimeError, "No current code unit to write to!"
def Write(self, section, code):
self._CheckCurrent()
self.current.Write(section, code)
if self._current is not None:
self.current.Write(section, code)
def Section(self, section):
self._CheckCurrent()
return self.current.Section(section)
if self._current is not None:
return self.current.Section(section)
def _CreateOutputDir(self):