1. 15 Eki, 2010 1 kayıt (commit)
  2. 24 Şub, 2010 1 kayıt (commit)
  3. 23 Şub, 2010 1 kayıt (commit)
  4. 20 May, 2008 1 kayıt (commit)
  5. 02 May, 2007 1 kayıt (commit)
  6. 09 Şub, 2007 1 kayıt (commit)
  7. 16 Ock, 2005 1 kayıt (commit)
  8. 13 Eki, 2004 1 kayıt (commit)
  9. 30 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Complete the absolute import patch for the test suite. All relative · 408b6d34
      Barry Warsaw yazdı
      imports of test modules now import from the test package.  Other
      related oddities are also fixed (like DeprecationWarning filters that
      weren't specifying the full import part, etc.).  Also did a general
      code cleanup to remove all "from test.test_support import *"'s.  Other
      from...import *'s weren't changed.
      408b6d34
  10. 23 Tem, 2002 1 kayıt (commit)
    • Barry Warsaw's avatar
      Get rid of relative imports in all unittests. Now anything that · 04f357cf
      Barry Warsaw yazdı
      imports e.g. test_support must do so using an absolute package name
      such as "import test.test_support" or "from test import test_support".
      
      This also updates the README in Lib/test, and gets rid of the
      duplicate data dirctory in Lib/test/data (replaced by
      Lib/email/test/data).
      
      Now Tim and Jack can have at it. :)
      04f357cf
  11. 04 Eki, 2001 1 kayıt (commit)
    • Tim Peters's avatar
      SF bug [#467331] ClassType.__doc__ always None. · 2f93e28a
      Tim Peters yazdı
      For a dynamically constructed type object, fill in the tp_doc slot with
      a copy of the argument dict's "__doc__" value, provided the latter exists
      and is a string.
      NOTE:  I don't know what to do if it's a Unicode string, so in that case
      tp_doc is left NULL (which shows up as Py_None if you do Class.__doc__).
      Note that tp_doc holds a char*, not a general PyObject*.
      2f93e28a
  12. 03 Eki, 2001 2 kayıt (commit)