Skip to content
Snippets Groups Projects
  1. Sep 18, 2024
  2. Sep 17, 2024
  3. Sep 16, 2024
  4. Sep 15, 2024
  5. Sep 14, 2024
    • David Gobbi's avatar
      Avoid use of deprecated Py_GetProgramName · 718db8b7
      David Gobbi authored
      Py_GetProgramName() was deprecated in Python 3.13 and will be
      removed in Python 3.15.  The same information can be retrieved
      from sys.executable.  Note that since we stopped using
      Py_SetProgramName() for Python>=3.8, for consistency the #ifdef
      for Py_GetProgramName() also checks Python>=3.8.
      718db8b7
    • David Gobbi's avatar
      Work around deprecated unittest.makeSuite · aa647dfe
      David Gobbi authored
      The Python unittest.makeSuite() function is gone in Python 3.13,
      replace with unittest.TestLoader.loadTestsFromTestCase()
      aa647dfe
    • David Gobbi's avatar
      Python 3.13 fix for missing dict segfault · 67592976
      David Gobbi authored
      Python 3.13 removed a safety net from PyModule_Type's tp_init slot
      that created the module's md_dict member if it was NULL.  This
      safety net was removed because, since Python 3.11, the md_dict is
      created by tp_new and is never expected to be NULL.  So, in our
      own code, we must ensure that tp_new is called before tp_init.
      67592976
    • Kitware Robot's avatar
      VTK Nightly Date Stamp · fcea74df
      Kitware Robot authored
      fcea74df
  6. Sep 13, 2024
Loading