1. 13 Nis, 2006 1 kayıt (commit)
  2. 26 Tem, 2001 1 kayıt (commit)
  3. 18 Ock, 2001 1 kayıt (commit)
  4. 01 Eyl, 2000 1 kayıt (commit)
  5. 22 Tem, 2000 1 kayıt (commit)
  6. 01 Tem, 2000 1 kayıt (commit)
  7. 30 Haz, 2000 3 kayıt (commit)
    • Guido van Rossum's avatar
      Change copyright notice - 2nd try. · ffcc3813
      Guido van Rossum yazdı
      ffcc3813
    • Guido van Rossum's avatar
      Change copyright notice. · fd71b9e9
      Guido van Rossum yazdı
      fd71b9e9
    • Fred Drake's avatar
      Trent Mick <trentm@activestate.com>: · 4c82b236
      Fred Drake yazdı
      This patch fixes possible overflow in the use of
      PyOS_GetLastModificationTime in getmtime.c and Python/import.c.
      
      Currently PyOS_GetLastModificationTime returns a C long. This can
      overflow on Win64 where sizeof(time_t) > sizeof(long). Besides it
      should logically return a time_t anyway (this patch changes this).
      
      As well, import.c uses PyOS_GetLastModificationTime for .pyc
      timestamping.  There has been recent discussion about the .pyc header
      format on python-dev.  This patch adds oveflow checking to import.c so
      that an exception will be raised if the modification time
      overflows. There are a few other minor 64-bit readiness changes made
      to the module as well:
      
      - size_t instead of int or long for function-local buffer and string
      length variables
      
      - one buffer overflow check was added (raises an exception on possible
      overflow, this overflow chance exists on 32-bit platforms as well), no
      other possible buffer overflows existed (from my analysis anyway)
      
      Closes SourceForge patch #100509.
      4c82b236
  8. 05 Eyl, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      First part of package support. · aee0bad0
      Guido van Rossum yazdı
      This doesn't yet support "import a.b.c" or "from a.b.c import x", but
      it does recognize directories.  When importing a directory, it
      initializes __path__ to a list containing the directory name, and
      loads the __init__ module if found.
      
      The (internal) find_module() and load_module() functions are
      restructured so that they both also handle built-in and frozen modules
      and Mac resources (and directories of course).  The imp module's
      find_module() and (new) load_module() also have this functionality.
      Moreover, imp unconditionally defines constants for all module types,
      and has two more new functions: find_module_in_package() and
      find_module_in_directory().
      
      There's also a new API function, PyImport_ImportModuleEx(), which
      takes all four __import__ arguments (name, globals, locals, fromlist).
      The last three may be NULL.  This is currently the same as
      PyImport_ImportModule() but in the future it will be able to do
      relative dotted-path imports.
      
      Other changes:
      
      - bltinmodule.c: in __import__, call PyImport_ImportModuleEx().
      
      - ceval.c: always pass the fromlist to __import__, even if it is a C
      function, so PyImport_ImportModuleEx() is useful.
      
      - getmtime.c: the function has a second argument, the FILE*, on which
      it applies fstat().  According to Sjoerd this is much faster.  The
      first (pathname) argument is ignored, but remains for backward
      compatibility (so the Mac version still works without changes).
      
      By cleverly combining the new imp functionality, the full support for
      dotted names in Python (mini.py, not checked in) is now about 7K,
      lavishly commented (vs. 14K for ni plus 11K for ihooks, also lavishly
      commented).
      
      Good night!
      aee0bad0
  9. 07 May, 1997 1 kayıt (commit)
  10. 25 Eki, 1996 1 kayıt (commit)
  11. 19 Agu, 1996 1 kayıt (commit)
  12. 12 Ock, 1995 1 kayıt (commit)
  13. 04 Ock, 1995 1 kayıt (commit)
    • Guido van Rossum's avatar
      Added 1995 to copyright message. · 6d023c98
      Guido van Rossum yazdı
      bltinmodule.c: fixed coerce() nightmare in ternary pow().
      modsupport.c (initmodule2): pass METH_FREENAME flag to newmethodobject().
      pythonrun.c: move flushline() into and around print_error().
      6d023c98
  14. 30 Agu, 1994 1 kayıt (commit)
  15. 01 Agu, 1994 1 kayıt (commit)
  16. 24 Ara, 1993 1 kayıt (commit)
  17. 28 Tem, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Added support for X11 modules. · a3309960
      Guido van Rossum yazdı
      * Makefile: change location of FORMS library.
      * posixmodule.c: turn #if 0 into #ifdef MSDOS (stuff in unistd.h or not)
      * Almost all .h files: added CPP magic to avoid duplicate inclusions and
        to support inclusion from C++.
      a3309960
  18. 20 May, 1993 1 kayıt (commit)
  19. 29 Mar, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Changed all copyright messages to include 1993. · 9bfef44d
      Guido van Rossum yazdı
      * Stubs for faster implementation of local variables (not yet finished)
      * Added function name to code object.  Print it for code and function
        objects.  THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version
        number has changed accordingly)
      * Print address of self for built-in methods
      * New internal functions getattro and setattro (getattr/setattr with
        string object arg)
      * Replaced "dictobject" with more powerful "mappingobject"
      * New per-type functio tp_hash to implement arbitrary object hashing,
        and hashobject() to interface to it
      * Added built-in functions hash(v) and hasattr(v, 'name')
      * classobject: made some functions static that accidentally weren't;
        added __hash__ special instance method to implement hash()
      * Added proper comparison for built-in methods and functions
      9bfef44d
  20. 05 Agu, 1992 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Makefile: cosmetics · ff4949ee
      Guido van Rossum yazdı
      * socketmodule.c: get rid of makepair(); fix makesocketaddr to fix
        broken recvfrom()
      * socketmodule: get rid of getStrarg()
      * ceval.h: move eval_code() to new file eval.h, so compile.h is no
        longer needed.
      * ceval.c: move thread comments to ceval.h; always make save/restore
        thread functions available (for dynloaded modules)
      * cdmodule.c, listobject.c: don't include compile.h
      * flmodule.c: include ceval.h
      * import.c: include eval.h instead of ceval.h
      * cgen.py: add forground(); noport(); winopen(""); to initgl().
      * bltinmodule.c, socketmodule.c, fileobject.c, posixmodule.c,
        selectmodule.c:
        adapt to threads (add BGN/END SAVE macros)
      * stdwinmodule.c: adapt to threads and use a special stdwin lock.
      * pythonmain.c: don't include getpythonpath().
      * pythonrun.c: use BGN/END SAVE instead of direct calls; also more
        BGN/END SAVE calls etc.
      * thread.c: bigger stack size for sun; change exit() to _exit()
      * threadmodule.c: use BGN/END SAVE macros where possible
      * timemodule.c: adapt better to threads; use BGN/END SAVE; add
        longsleep internal function if BSD_TIME; cosmetics
      ff4949ee
  21. 05 Nis, 1992 1 kayıt (commit)
  22. 16 Agu, 1991 1 kayıt (commit)
  23. 19 Şub, 1991 1 kayıt (commit)
  24. 20 Ara, 1990 1 kayıt (commit)