1. 05 Mar, 2011 2 kayıt (commit)
  2. 15 Agu, 2003 1 kayıt (commit)
  3. 14 Haz, 2003 1 kayıt (commit)
  4. 13 Şub, 2003 1 kayıt (commit)
  5. 09 Ock, 2003 3 kayıt (commit)
  6. 15 Eyl, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Backport (the relevant part of) rexec.py 1.41. · 1caa0720
      Guido van Rossum yazdı
      Address SF bug #577530: del __builtins__ breaks out of rexec
      
      Using the suggestion there: add_module() forces __builtin__ back; this
      fixes r_exec, r_eval, r_execfile.
      
      This does not mean that rexec is now considered safe!  But for those
      willing to take the risk, it's safer than before.  (Note that a safety
      analysis of the code module would be wise if you plan to use the
      interactive console for real -- I've only ever used it to play with
      restricted mode.)
      1caa0720
  7. 04 Eyl, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Backport: · b6e835c5
      Guido van Rossum yazdı
      Fix for SF bug 601077 by Zack Weinberg.
      
      The new execvpe code would sometimes do the wrong thing when a
      non-executable file existed earlier in the path and an executable file
      of the same name existed later in the path.  This patch restores the
      proper behavior (which is to execute the second file).  When only a
      non-executable file exists, the correct error is still reported.
      b6e835c5
  8. 29 Agu, 2002 1 kayıt (commit)
  9. 27 Agu, 2002 3 kayıt (commit)
  10. 08 Agu, 2002 3 kayıt (commit)
  11. 12 Tem, 2002 2 kayıt (commit)
    • Jeremy Hylton's avatar
      Update test output. · 25fae7ca
      Jeremy Hylton yazdı
      25fae7ca
    • Jeremy Hylton's avatar
      Backport changes. · def3b505
      Jeremy Hylton yazdı
      Change _begin() back to begin().
      Fix for SF bug 579107.
      Fix for SF bug #432621: httplib: multiple Set-Cookie headers
      Fix SF bug #575360
      Handle HTTP/0.9 responses.
      def3b505
  12. 02 Tem, 2002 2 kayıt (commit)
  13. 24 Haz, 2002 1 kayıt (commit)
  14. 20 Haz, 2002 1 kayıt (commit)
  15. 18 Haz, 2002 8 kayıt (commit)
  16. 17 Haz, 2002 1 kayıt (commit)
  17. 13 Haz, 2002 3 kayıt (commit)
  18. 11 Haz, 2002 1 kayıt (commit)
  19. 01 Haz, 2002 1 kayıt (commit)
    • Neal Norwitz's avatar
      Fix SF #561858 Assertion with very long lists · 63ab3e2b
      Neal Norwitz yazdı
      if co_stacksize was > 32767 (the maximum value
      which can be stored in 16 bits (signed)),
      the PyCodeObject would be written wrong.
      So on the second import (reading the .pyc)
      would cause a crash.
      
      Since we can't change the PYC magic, we
      go on (silently), but don't write the file.
      This means everything will work, but
      a .pyc will not be written and the file will need
      to be parsed on each import.
      63ab3e2b
  20. 31 May, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Backport to 2.1.x: · c883ad63
      Guido van Rossum yazdı
      SF bug 533625 (Armin Rigo). rexec: potential security hole
      
      If a rexec instance allows writing in the current directory (a common
      thing to do), there's a way to execute bogus bytecode.  Fix this by
      not allowing imports from .pyc files (in a way that allows a site to
      configure things so that .pyc files *are* allowed, if writing is not
      allowed).
      c883ad63
  21. 29 May, 2002 1 kayıt (commit)
    • Neal Norwitz's avatar
      Backport fix by tismer for #210682 · a5fd7ba9
      Neal Norwitz yazdı
      fixed an old buglet that caused bdb to be unable to
      continue in the botframe, after a breakpoint was set.
      the key idea is not to set botframe to the bottom level frame,
      but its f_back, which actually might be None.
      Additional changes: migrated old exception trick to use
      sys._getframe(), which exists both in 2.1 and 2.2 .
      
      Note: I believe Mark Hammond needs to look over his code now.
      F5 correctly starts up in the debugger, but later on doesn't stop at a given
      breakpoint any longer.
      
      kind regards - chris
      a5fd7ba9
  22. 21 May, 2002 1 kayıt (commit)