- 18 Agu, 2000 5 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
by the following. typedef in a portable way the Python name for the C9X uintptr_t type. This latter is the most portable way to spell an integral type to which a void* can be cast to and back again without losing information. Parallel checkin hacks configure to check if the platform/compiler supports the C9X name.
-
Fred Drake yazdı
returns an xrange object, not a range object, despite the name of the source file they're implemented in. In the list of comparison operators, list != before <>, since <> is described as obsolescent.
-
Fred Drake yazdı
stand out more.
-
Fred Drake yazdı
Lots of minor markup adjustments as well.
-
- 17 Agu, 2000 23 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
-
Thomas Wouters yazdı
name as n'. By doing some twists and turns, "as" is not a reserved word. There is a slight change in semantics for 'from module import name' (it will now honour the 'global' keyword) but only in cases that are explicitly undocumented.
-
Thomas Wouters yazdı
is no __getslice__ available. Also does the same for C extension types. Includes rudimentary documentation (it could use a cross reference to the section on slice objects, I couldn't figure out how to do that) and a test suite for all Python __hooks__ I could think of, including the new behaviour.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
code; it is not sufficiently readable now that it in written in C, and is less likely to be available to end users.
-
Fred Drake yazdı
Document opcodes added to support extended call syntax.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
The package with standard suites. These are used separately and as base classes for other suite packages (StdSuite is slightly magical, in that it is the gensuitemodule default base package).
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Generate packages in stead of separate modules. The package main module imports everything, it knows about the app signature, suites can extend standard suites, and lots more. Automatically finding declarations in other suites TBD.
-
Jack Jansen yazdı
Removed temporary code to disable OT networking (this was a workaround for getpeername() not working in a previous release of GUSI, but it has been fixed).
-
Jack Jansen yazdı
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
directory.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Andrew M. Kuchling yazdı
Comment out the unwritten XML section mymalloc.h -> pymem.h
-
- 16 Agu, 2000 12 kayıt (commit)
-
-
Barry Warsaw yazdı
shutdown time, but CVS log entry for revision 2.45 explains why this is so. Simply include a comment so we don't have to re-figure it out again 5 years from now.
-
Barry Warsaw yazdı
created from the "big"/"little" constant needs to be decref'd.
-
Trent Mick yazdı
(64-bit AIX) This is because the RECURSION_LIMIT is too low. This patch lowers to recusion limit to 7500 such that the recusion check fires before a segfault. Fredrik suggested/approved the fix in private email, modulo sre's recusion limit checking no being necessary when PyOS_CheckStack is implemented for Windows.
-
Fred Drake yazdı
Further examples of list comprehensions.
-
Peter Schneider-Kamp yazdı
-
Barry Warsaw yazdı
First, the allocated buffer was never freed after using it to create the PyString object. Second, it was possible that have_filename would be false (meaning that filename was not a PyString object), but that the code would still try to PyString_GET_SIZE() it.
-
Trent Mick yazdı
This closes patch: http://sourceforge.net/patch/index.php?func=detailpatch&patch_id=101176&group_id=5470
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
of the init_socket() function. This module is now *always* _socket.
-
Fred Drake yazdı
socket.py is used for all platforms, and it defines the additional classes and alternate socket() function for Windows and BeOS systems. The plat-*/socket.py files are no longer needed, since there is a shared socket.py. make_fqdn() is provided, but I decided to call it getfqdn() to be consistent with the other names in the socket module. Since it is really a "get" operation and does not create a new name, this is the right name to give it. Move the docstring here from the _socket module.
-