1. 11 Eki, 2010 2 kayıt (commit)
    • Martin v. Löwis's avatar
      Upgrade to Unicode 6.0.0. · baecd724
      Martin v. Löwis yazdı
      makeunicodedata.py: download all data files from unicode.org,
        switch to extracting Unihan data from zip file.
        Read linebreakprops and derivednormalizationprops even for
        old versions, even though they are not used in delta records.
      test:unicode.py: U+11000 is now assigned, use U+14000 instead.
      baecd724
    • Martin v. Löwis's avatar
      Add 3.2b1. · e8930228
      Martin v. Löwis yazdı
      e8930228
  2. 10 Eki, 2010 10 kayıt (commit)
  3. 09 Eki, 2010 5 kayıt (commit)
  4. 08 Eki, 2010 10 kayıt (commit)
  5. 07 Eki, 2010 12 kayıt (commit)
  6. 06 Eki, 2010 1 kayıt (commit)
    • Victor Stinner's avatar
      Rewrite RunMainFromImporter() · 4726e40e
      Victor Stinner yazdı
       * fix argv0 reference counter if PyList_SetItem() fails
       * don't use complex if conditions, but a simple indentation and "goto error"
       * simplify error handling (remove Py_XDECREF(importer) from the error label)
       * don't set sys_path to NULL (it's useless, sys_path is a borrowed reference
         and sys_path is not a static variable)
       * try to write only one instruction per line for better readability
      4726e40e