- 18 Aug, 2000 14 commits
-
-
Barry Warsaw authored
Py_FatalError() should reflect that.
-
Barry Warsaw authored
-
Barry Warsaw authored
fields token and expected must also be initialized, otherwise the tests in parsetok() can generate uninitialized memory read errors. This quiets an Insure warning.
-
Barry Warsaw authored
scope. Previously, s_buffer[] was defined inside the PyUnicode_Check() scope, but referred to in the outer scope via assignment to s. This quiets an Insure portability warning.
-
Barry Warsaw authored
types (i.e. Py_uintptr_t, our spelling of C9X's uintptr_t). ANSI specifies that pointer compares other than == and != to non-related structures are undefined. This quiets an Insure portability warning.
-
Barry Warsaw authored
scope. Previously, s_buffer[] was defined inside the PyUnicode_Check() scope, but referred to in the outer scope via assignment to s. This quiets an Insure portability warning.
-
Barry Warsaw authored
to integer types (i.e. Py_uintptr_t, our spelling of C9X's uintptr_t). ANSI specifies that pointer compares other than == and != to non-related structures are undefined. This quiets an Insure portability warning.
-
Barry Warsaw authored
which I can cast void* to and back again without losing information". In pyport.h, we typedef Py_uintptr_t to mean this thing, which if the platform supports, will be uintptr_t (otherwise, other accomodations are made).
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
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 authored
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 authored
stand out more.
-
Fred Drake authored
Lots of minor markup adjustments as well.
-
- 17 Aug, 2000 23 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
-
Thomas Wouters authored
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 authored
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 authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
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 authored
Document opcodes added to support extended call syntax.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
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 authored
-
Jack Jansen authored
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 authored
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 authored
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
directory.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Andrew M. Kuchling authored
Comment out the unwritten XML section mymalloc.h -> pymem.h
-
- 16 Aug, 2000 3 commits
-
-
Barry Warsaw authored
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 authored
created from the "big"/"little" constant needs to be decref'd.
-
Trent Mick authored
(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.
-