Example #1
0
 def read_template(self):
     try:
         _sdist.read_template(self)
     except:
         # grody hack to close the template file (MANIFEST.in)
         # this prevents easy_install's attempt at deleting the file from
         # dying and thus masking the real error
         sys.exc_info()[2].tb_next.tb_frame.f_locals['template'].close()
         raise
Example #2
0
 def read_template(self):
     try:
         _sdist.read_template(self)
     except:
         # grody hack to close the template file (MANIFEST.in)
         # this prevents easy_install's attempt at deleting the file from
         # dying and thus masking the real error
         sys.exc_info()[2].tb_next.tb_frame.f_locals['template'].close()
         raise
Example #3
0
 def __read_template_hack(self):
     # This grody hack closes the template file (MANIFEST.in) if an
     #  exception occurs during read_template.
     # Doing so prevents an error when easy_install attempts to delete the
     #  file.
     try:
         _sdist.read_template(self)
     except:
         sys.exc_info()[2].tb_next.tb_frame.f_locals['template'].close()
         raise
Example #4
0
 def __read_template_hack(self):
     # This grody hack closes the template file (MANIFEST.in) if an
     #  exception occurs during read_template.
     # Doing so prevents an error when easy_install attempts to delete the
     #  file.
     try:
         _sdist.read_template(self)
     except:
         sys.exc_info()[2].tb_next.tb_frame.f_locals['template'].close()
         raise
Example #5
0
 def read_template(self):
     sdist.read_template(self)
     self.filelist.process_template_line('recursive-include fortran Makefile* *.dat *.?90')
Example #6
0
 def read_template(self):
     sdist.read_template(self)
     self.filelist.process_template_line('recursive-include fortran Makefile* *.dat *.?90')