1. 14 Agu, 2008 4 kayıt (commit)
    • Brett Cannon's avatar
      Fix markup for various binary operation examples where the operands were bolded · 9329846f
      Brett Cannon yazdı
      and the operator was made literal, leading to non-valid reST. Changed to have
      the entire expression just be a literal bit of text.
      9329846f
    • Hirokazu Yamamoto's avatar
    • Brett Cannon's avatar
      Silence the DeprecationWarning of rfc822 triggered by its importation in · bf3157b8
      Brett Cannon yazdı
      mimetools.
      
      This has an unfortunate side-effect of potentially not letting any warning
      about rfc822's deprecation be seen by user-visible code if rfc822 is not
      imported before mimetools. This is because modules are cached in sys.modules
      and thus do not have their deprecation triggered more than once. But this
      silencing would have happened by other code that silences the use of mimetools
      or rfc822 anyway in the stdlib or user code, and thus seems justified to be
      done here.
      bf3157b8
    • Hirokazu Yamamoto's avatar
      Issue #2065: VC6 related fix. · eea8eda3
      Hirokazu Yamamoto yazdı
      - PC/VC6/_bsddb.dsp:
          removed '/nodefaultlib:"msvcrt"' to fix linker error.
      
      - PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw:
          added new module support.
      
      - PC/VC6/_sqlite3.dsp:
          /D "MODULE_NAME=\"sqlite3\""
          caused extra leading space like
          #define MODULE_NAME " sqlite3"
          so uses
          /D MODULE_NAME=\"sqlite3\"
          instead.
      
      - PC/VC6/python.dsp:
          changed stack size to 2MB to avoid stack overflow on
          some tests.
      eea8eda3
  2. 12 Agu, 2008 6 kayıt (commit)
  3. 11 Agu, 2008 6 kayıt (commit)
  4. 10 Agu, 2008 1 kayıt (commit)
  5. 09 Agu, 2008 8 kayıt (commit)
  6. 08 Agu, 2008 6 kayıt (commit)
  7. 07 Agu, 2008 3 kayıt (commit)
  8. 06 Agu, 2008 4 kayıt (commit)
  9. 05 Agu, 2008 2 kayıt (commit)
    • Guido van Rossum's avatar
      Tracker issue 3487: sre "bytecode" verifier. · 8b762f05
      Guido van Rossum yazdı
      This is a verifier for the binary code used by the _sre module (this
      is often called bytecode, though to distinguish it from Python bytecode
      I put it in quotes).
      
      I wrote this for Google App Engine, and am making the patch available as
      open source under the Apache 2 license.  Below are the copyright
      statement and license, for completeness.
      
      # Copyright 2008 Google Inc.
      #
      # Licensed under the Apache License, Version 2.0 (the "License");
      # you may not use this file except in compliance with the License.
      # You may obtain a copy of the License at
      #
      #     http://www.apache.org/licenses/LICENSE-2.0
      #
      # Unless required by applicable law or agreed to in writing, software
      # distributed under the License is distributed on an "AS IS" BASIS,
      # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      # See the License for the specific language governing permissions and
      # limitations under the License.
      
      It's not necessary to include these copyrights and bytecode in the
      source file.  Google has signed a contributor's agreement with the PSF
      already.
      8b762f05
    • Andrew M. Kuchling's avatar