1. 24 Mar, 2004 1 kayıt (commit)
  2. 20 Kas, 2003 1 kayıt (commit)
  3. 25 Eki, 2003 1 kayıt (commit)
  4. 12 Eki, 2003 1 kayıt (commit)
  5. 15 Tem, 2003 1 kayıt (commit)
  6. 10 Nis, 2003 1 kayıt (commit)
    • Guido van Rossum's avatar
      PyErr_NormalizeException(): in the type==NULL test, we should simply · 6b3fffaf
      Guido van Rossum yazdı
      return.  Setting an exception can mess with the exception state, and
      continuing is definitely wrong (since type is dereferenced later on).
      Some code that calls this seems to be prepared for a NULL exception
      type, so let's be safe rather than sorry and simply assume there's
      nothing to normalize in this case.
      6b3fffaf
  7. 19 Şub, 2003 1 kayıt (commit)
  8. 11 Ara, 2002 1 kayıt (commit)
  9. 04 Eki, 2002 2 kayıt (commit)
  10. 03 Eki, 2002 1 kayıt (commit)
  11. 29 Tem, 2002 1 kayıt (commit)
    • Thomas Heller's avatar
      New functions for extension writers on Windows: · 085358a3
      Thomas Heller yazdı
       PyErr_SetExcFromWindowsErr(), PyErr_SetExcFromWindowsErrWithFilename().
      
      Similar to PyErr_SetFromWindowsErrWithFilename() and
      PyErr_SetFromWindowsErr(), but they allow to specify
      the exception type to raise. Available on Windows.
      
      See SF patch #576458.
      085358a3
  12. 30 Haz, 2002 1 kayıt (commit)
  13. 14 Nis, 2002 1 kayıt (commit)
    • Jack Jansen's avatar
      Mass checkin of universal newline support. · 7b8c7546
      Jack Jansen yazdı
      Highlights: import and friends will understand any of \r, \n and \r\n
      as end of line. Python file input will do the same if you use mode 'U'.
      Everything can be disabled by configuring with --without-universal-newlines.
      
      See PEP278 for details.
      7b8c7546
  14. 09 Mar, 2002 1 kayıt (commit)
  15. 03 Mar, 2002 1 kayıt (commit)
  16. 02 Eki, 2001 1 kayıt (commit)
  17. 26 Eyl, 2001 1 kayıt (commit)
    • Jeremy Hylton's avatar
      PyErr_NormalizeException() · e2e2c9f4
      Jeremy Hylton yazdı
      If a new exception occurs while an exception instance is being
      created, try harder to make sure there is a traceback.  If the
      original exception had a traceback associated with it and the new
      exception does not, keep the old exception.
      
      Of course, callers to PyErr_NormalizeException() must still be
      prepared to have tb set to NULL.
      
      XXX This isn't an ideal solution, but it's better than no traceback at
      all.  It occurs if, for example, the exception occurs when the call to
      the constructor fails before any Python code is executed.  Guido
      suggests that it there is Python code that was about to be executed
      -- but wasn't, say, because it was called with the wrong number of
      arguments -- then we should point at the first line of the code object
      anyway.
      e2e2c9f4
  18. 24 Agu, 2001 1 kayıt (commit)
  19. 30 May, 2001 1 kayıt (commit)
  20. 06 Mar, 2001 1 kayıt (commit)
  21. 28 Şub, 2001 2 kayıt (commit)
  22. 15 Ara, 2000 1 kayıt (commit)
  23. 24 Eki, 2000 1 kayıt (commit)
    • Fred Drake's avatar
      Ka-Ping Yee <ping@lfw.org>: · 661ea26b
      Fred Drake yazdı
      Changes to error messages to increase consistency & clarity.
      
      This (mostly) closes SourceForge patch #101839.
      661ea26b
  24. 10 Eki, 2000 1 kayıt (commit)
  25. 01 Eyl, 2000 3 kayıt (commit)
  26. 24 Agu, 2000 1 kayıt (commit)
  27. 18 Agu, 2000 1 kayıt (commit)
  28. 07 Agu, 2000 1 kayıt (commit)
  29. 22 Tem, 2000 1 kayıt (commit)
  30. 12 Tem, 2000 1 kayıt (commit)
  31. 09 Tem, 2000 1 kayıt (commit)
  32. 30 Haz, 2000 2 kayıt (commit)
  33. 02 May, 2000 1 kayıt (commit)
    • Barry Warsaw's avatar
      PyErr_GivenExceptionMatches(): Check for err==NULL and exc==NULL and · fa5c315a
      Barry Warsaw yazdı
      return 0 (exceptions don't match).  This means that if an ImportError
      is raised because exceptions.py can't be imported, the interpreter
      will exit "cleanly" with an error message instead of just core
      dumping.
      
      PyErr_SetFromErrnoWithFilename(), PyErr_SetFromWindowsErrWithFilename():
      Don't test on Py_UseClassExceptionsFlag.
      fa5c315a
  34. 02 Mar, 2000 1 kayıt (commit)
  35. 21 Şub, 2000 1 kayıt (commit)