1. 26 May, 2005 1 commit
    • Michael W. Hudson's avatar
      Fix: · f0aee640
      Michael W. Hudson authored
      [ 1207501 ] Issue in grammar
      
      We didn't define dotted_name in the pseudo-grammar in the reference
      docs.  Backport candidate.
      f0aee640
  2. 25 May, 2005 2 commits
  3. 20 May, 2005 2 commits
    • Skip Montanaro's avatar
      Disallow opening files with modes 'aU' or 'wU' as specified by PEP · ebb738c9
      Skip Montanaro authored
      278. Closes bug 967182.
      ebb738c9
    • Jason Tishler's avatar
      Patch #1197318: Cygwin case-sensitive import patch · 27626d47
      Jason Tishler authored
      A problem regarding importing symlinked modules was recently reported on the
      Cygwin mailing list:
      
          http://cygwin.com/ml/cygwin/2005-04/msg00257.html
      
      The following test case demonstrates the problem:
      
      $ ls -l
      total 1
      lrwxrwxrwx    1 jt       None            6 Apr 23 13:32 bar.py -> foo.py
      -rw-r--r--    1 jt       None           24 Apr 18 20:13 foo.py
      
      $ python -c 'import bar'
      Traceback (most recent call last):
      File "<string>", line 1, in ?
      ImportError: No module named bar
      
      Since Cygwin's case_ok() uses a modified version of the Windows's version, the
      symlinked bar module actually resolves to file foo.py instead of bar.py. This
      obviously causes the matching code to fail (regardless of case).
      
      The patch fixes this problem by making Cygwin use the Mac OS X case_ok()
      instead of a modified Window's version.
      27626d47
  4. 18 May, 2005 1 commit
  5. 16 May, 2005 1 commit
  6. 15 May, 2005 2 commits
  7. 14 May, 2005 3 commits
  8. 12 May, 2005 2 commits
  9. 10 May, 2005 2 commits
  10. 05 May, 2005 1 commit
  11. 04 May, 2005 1 commit
  12. 30 Apr, 2005 4 commits
  13. 28 Apr, 2005 1 commit
  14. 27 Apr, 2005 1 commit
    • Michael W. Hudson's avatar
      Fix · 22d6bb8e
      Michael W. Hudson authored
      [ python-Bugs-1190599 ] dir() docs show incorrect output
      
      though not entirely how it's suggested in the bug report.
      22d6bb8e
  15. 26 Apr, 2005 2 commits
  16. 25 Apr, 2005 1 commit
  17. 24 Apr, 2005 1 commit
  18. 21 Apr, 2005 3 commits
  19. 20 Apr, 2005 3 commits
  20. 19 Apr, 2005 3 commits
  21. 18 Apr, 2005 1 commit
    • Michael W. Hudson's avatar
      Fix: · 4e7f4374
      Michael W. Hudson authored
      [ 1176893 ] Readline segfault
      
      by unsilly-ing PyGILState_Release().
      
      Backport candidate.
      4e7f4374
  22. 17 Apr, 2005 1 commit
  23. 15 Apr, 2005 1 commit