1. 10 Ara, 2001 4 kayıt (commit)
    • Finn Bock's avatar
      Skipping some tests by adding the usual jython conditional test around: · 2b29cb25
      Finn Bock yazdı
      - the repr of unicode. Jython only add the u'' if the string contains char
        values > 255.
      - A unicode arg to unicode() is perfectly valid in jython.
      - A test buffer() test. No buffer() on Jython
      
      This closes patch "[ #490920 ] Jython and test_unicode".
      2b29cb25
    • Guido van Rossum's avatar
      SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't work · 61d3637f
      Guido van Rossum yazdı
      Using grid methods on ScrolledText widgets does not
      work as expected. It either fails to pack a widget, or
      can even cause Tk to lock up.
      
      The problem is that the .grid method is being called on
      the text widget, not the frame widget. This can lead
      to the well-known lockup in Tk when a frame's children
      are managed by both the pack and grid managers. Even
      if it doesn't lock up, the frame is never placed within
      the intended widget.
      
      Program fragment:
      >>> import ScrolledText
      >>> s = ScrolledText.ScrolledText()
      >>> s.grid(row=0, column=0, rowspan=2)
      
      The following patch uses the same hack to copy the
      'grid' and 'place' geometry manager methods to the
      ScrolledText instance as is already used for the 'pack'
      manager.
      61d3637f
    • Michael W. Hudson's avatar
      Fix for · fb173cd4
      Michael W. Hudson yazdı
      [ #409430 ] pydoc install broken
      fb173cd4
    • Michael W. Hudson's avatar
      Fix for · 49bdaede
      Michael W. Hudson yazdı
      [ #477371 ] build_scripts can use wrong #! line
      
      scripts now get "built" into a directory
      
      build/scripts-$(PYTHON_VERSION)/
      49bdaede
  2. 09 Ara, 2001 6 kayıt (commit)
  3. 08 Ara, 2001 4 kayıt (commit)
    • Guido van Rossum's avatar
      Patch supplied by Burton Radons for his own SF bug #487390: Modifying · 14648396
      Guido van Rossum yazdı
      type.__module__ behavior.
      
      This adds the module name and a dot in front of the type name in every
      type object initializer, except for built-in types (and those that
      already had this).  Note that it touches lots of Mac modules -- I have
      no way to test these but the changes look right.  Apologies if they're
      not.  This also touches the weakref docs, which contains a sample type
      object initializer.  It also touches the mmap test output, because the
      mmap type's repr is included in that output.  It touches object.h to
      put the correct description in a comment.
      14648396
    • Guido van Rossum's avatar
      SF patch #490515 (Joe A) urllib.open_https() protocol issue · b931bf3c
      Guido van Rossum yazdı
      open_http():
          In urllib.py library module, URLopener.open_https()
          returns a class instance of addinfourl() with its
          self.url property missing the protocol.
      
          Instead of "https://www.someurl.com", it becomes
          "://www.someurl.com".
      b931bf3c
    • Finn Bock's avatar
      Enable support for jython: · aa3dc456
      Finn Bock yazdı
      1. Acknowledge the welknown difference that jython
      allows continue in the finally clause.
      
      2. Avoid using _testcapi when running with jython.
      
      This closes patch "[ #490417 ] Jython and test_exceptions"
      aa3dc456
    • Guido van Rossum's avatar
      Remove erroneous and confusing comment -- sre patterns *can* be · baefcebb
      Guido van Rossum yazdı
      pickled and we do *not* expect exceptions from either pickle or
      cPickle.
      baefcebb
  4. 07 Ara, 2001 6 kayıt (commit)
  5. 06 Ara, 2001 10 kayıt (commit)
  6. 05 Ara, 2001 10 kayıt (commit)