1. 26 Eyl, 2000 1 kayıt (commit)
  2. 15 Eyl, 2000 2 kayıt (commit)
  3. 01 Eyl, 2000 1 kayıt (commit)
  4. 31 Tem, 2000 1 kayıt (commit)
  5. 21 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', · f3f33dcf
      Thomas Wouters yazdı
      and a couple of functions that were missed in the previous batches. Not
      terribly tested, but very carefully scrutinized, three times.
      
      All these were found by the little findkrc.py that I posted to python-dev,
      which means there might be more lurking. Cases such as this:
      
      long
      func(a, b)
      	long a;
      	long b; /* flagword */
      {
      
      and other cases where the last ; in the argument list isn't followed by a
      newline and an opening curly bracket. Regexps to catch all are welcome, of
      course ;)
      f3f33dcf
  6. 10 Tem, 2000 1 kayıt (commit)
  7. 09 Tem, 2000 1 kayıt (commit)
  8. 30 Haz, 2000 2 kayıt (commit)
  9. 01 Haz, 2000 1 kayıt (commit)
  10. 29 Şub, 2000 1 kayıt (commit)
  11. 04 Ara, 1998 1 kayıt (commit)
  12. 18 Eyl, 1998 1 kayıt (commit)
  13. 29 Haz, 1998 1 kayıt (commit)
  14. 28 May, 1998 1 kayıt (commit)
  15. 10 Nis, 1998 1 kayıt (commit)
  16. 21 Ara, 1997 1 kayıt (commit)
  17. 19 Ara, 1997 1 kayıt (commit)
  18. 04 Kas, 1997 1 kayıt (commit)
  19. 01 Eki, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      Apply two changes, systematically: · 0cb96de2
      Guido van Rossum yazdı
      (1) Use PyErr_NewException("module.class", NULL, NULL) to create the
          exception object.
      
      (2) Remove all calls to Py_FatalError(); instead, return or
          ignore the errors -- the import code now checks PyErr_Occurred()
          after calling a module's init function, so it's no longer a
          fatal error for the initialization to fail.
      
      Also did some small cleanups, e.g. removed unnecessary test for
      "already initialized" from initfpectl(), and unified
      initposix()/initnt().
      
      I haven't checked this very thoroughly, so while the changes are
      pretty trivial -- beware of untested code!
      0cb96de2
  20. 05 Eyl, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      Contribution by Hannu Krosing (with some changes). · 9eb671fa
      Guido van Rossum yazdı
      Added 'p' format character for Pascal string (i.e. leading length
      byte).  This uses the count prefix line 's' does, except that the
      count includes the length byte; i.e. '10p' takes 10 bytes packed but
      has space for a length byte and 9 data bytes.
      9eb671fa
  21. 26 Agu, 1997 1 kayıt (commit)
  22. 11 Nis, 1997 1 kayıt (commit)
  23. 03 Ock, 1997 3 kayıt (commit)
  24. 02 Ock, 1997 3 kayıt (commit)
  25. 31 Ara, 1996 3 kayıt (commit)
    • Guido van Rossum's avatar
      Added better handling of unsigned longs -- a Python long returned by · 60c50614
      Guido van Rossum yazdı
      unpack('L', ...) is now acceptable to pack('L', ...).
      60c50614
    • Guido van Rossum's avatar
      Fix the first bugs... treatment of 0 count was wrong, and memchr() · 3aa27fd3
      Guido van Rossum yazdı
      should be memset().
      3aa27fd3
    • Guido van Rossum's avatar
      Pretty much rewritten to fulfull several long-standing wishes: · f7e6b4b3
      Guido van Rossum yazdı
      -- The whole implementation is now more table-driven.
      
      -- Unsigned integers.  Format characters 'B', 'H', 'I' and 'L'
      mean unsigned byte, short, int and long.  For 'I' and 'L', the return
      value is a Python long integer if a Python plain integer can't
      represent the required range (note: this is dependent on the size of
      the relevant C types only, not of the sign of the actual value).
      
      -- A new format character 's' packs/unpacks a string.  When given a
      count prefix, this is the size of the string, not a repeat count like
      for the other format characters; e.g. '10s' means a single 10-byte
      string, while '10c' means 10 characters.  For packing, the string is
      truncated or padded with null bytes as appropriate to make it fit.
      For unpacking, the resulting string always has exactly the specified
      number of bytes.  As a special case, '0s' means a single, empty
      string (while '0c' means 0 characters).
      
      -- Various byte order options.  The first character of the format
      string determines the byte order, size and alignment, as follows:
      
      First character		Byte order		size and alignment
      
      	'@'		native			native
      	'='		native			standard
      	'<'		little-endian		standard
      	'>'		big-endian		standard
      	'!'		network (= big-endian)	standard
      
      If the first character is not one of these, '@' is assumed.
      
      Native byte order is big-endian or little-endian, depending on the
      host system (e.g. Motorola and Sun are big-endian; Intel and DEC are
      little-endian).
      
      Native size and alignment are determined using the C compiler's sizeof
      expression.  This is always combined with native byte order.
      
      Standard size and alignment are as follows: no alignment is required
      for any type (so you have to use pad bytes); short is 2 bytes; int and
      long are 4 bytes.  In this mode, there is no support for float and
      double.
      
      Note the difference between '@' and '=': both use native byte order,
      but the size and alignment of the latter is standardized.
      
      The form '!' is available for those poor souls who can't remember
      whether network byte order is big-endian or little-endian.
      
      There is no way to indicate non-native byte order (i.e. force
      byte-swapping); use the appropriate choice of '<' or '>'.
      f7e6b4b3
  26. 12 Ara, 1996 1 kayıt (commit)
  27. 25 Eki, 1996 1 kayıt (commit)
  28. 02 Şub, 1995 1 kayıt (commit)
  29. 04 Ock, 1995 1 kayıt (commit)
  30. 01 Agu, 1994 1 kayıt (commit)
  31. 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
  32. 19 Agu, 1992 1 kayıt (commit)