- 27 Şub, 2001 7 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Andrew M. Kuchling yazdı
Add note about linuxaudiodev possibly working on BSD
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
be created (perhaps the source directory is read-only).
-
Neil Schemenauer yazdı
directory. Closes SF #403930.
-
- 26 Şub, 2001 7 kayıt (commit)
-
-
Fred Drake yazdı
.has_option(), .remove_option(), and .set(). This closes SF tracker #232913.
-
Tim Peters yazdı
therein are of the proper form.
-
Fred Drake yazdı
comments to reflect reality.
-
Fred Drake yazdı
so make it void.
-
Barry Warsaw yazdı
set a function attribute on a method (either bound or unbound). This reverts to Python 2.0 behavior that no attributes of the method are writable, but provides a more informative error message.
-
Barry Warsaw yazdı
- func.__dict__ is None until the first attribute is assigned - del func.__dict__ is equivalent to func.__dict__ = None - disallowing assignment to function attribute through unbound method (it was always illegal to assign through bound method). - verifying that setting attribute explicitly on underlying function via meth.im_func is okay.
-
Barry Warsaw yazdı
occurs. Also, continue processing.
-
- 24 Şub, 2001 1 kayıt (commit)
-
-
Barry Warsaw yazdı
multi-line list comprehensions.
-
- 23 Şub, 2001 17 kayıt (commit)
-
-
Tim Peters yazdı
Fixes the "debug-build -O test_builtin.py and no test_b2.pyo" crash just discussed on Python-Dev.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Turn on the "multifinder aware" bit. This should always have been on, but was was never a problem that it was off until CarbonLib 1.1 (which requires it, for some reason).
-
Fred Drake yazdı
will not have been done, and applications need to know that. Also, do not print a message about it; the exception is the right thing. This closes SF bug #133717.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
symtable_enter_scope(): Removed some unnecessary backslashes at the end of lines. C != Python. :)
-
Jeremy Hylton yazdı
Two different but related problems: 1. PySymtable_Free() must explicitly DECREF(st->st_cur), which should always point to the global symtable entry. This entry is setup by the first enter_scope() call, but there is never a corresponding exit_scope() call. Since each entry has a reference to scopes defined within it, the missing DECREF caused all symtable entries to be leaked. 2. The leak here masked a separate problem with PySymtableEntry_New(). When the requested entry was found in st->st_symbols, the entry was returned without doing an INCREF. And problem c) The ste_children slot was getting two copies of each child entry, because it was populating the slot on the first and second passes. Now only populate on the first pass.
-
Barry Warsaw yazdı
the internal API function to release the interned strings as the very last thing before returning status. This aids in memory use debugging because it eliminates a huge source of noise from the reports. This is never called during normal (non-debugging) use because releasing the interned strings slows Python's shutdown and isn't necessary anyway because the system will always reclaim the memory.
-
Barry Warsaw yazdı
release the interned string dictionary. This is useful for memory use debugging because it eliminates a huge source of noise from the reports. Only defined when INTERN_STRINGS is defined.
-
Andrew M. Kuchling yazdı
simpler than adding a bazillion switches, but means that the makesetup method probably can't ever go away completely. Oh well...
-
Andrew M. Kuchling yazdı
less wrong)
-
Mark Hammond yazdı
Checkin updated version of patch #103933 . As Thomas says, fixes the bugs #131064, #129584, #127722. See the discussion in bug #131064
-
Tim Peters yazdı
-
- 22 Şub, 2001 8 kayıt (commit)
-
-
Fred Drake yazdı
Move sample sessions to the left margin of the file for consistency; formatting can adjust the margin if needed. This closes SF bug #133213.
-
Fred Drake yazdı
to the module sections are right. This was also broken when converting to a flat Makefile.
-
Fred Drake yazdı
broken when converting to a flat Makefile. ;-(
-
Fred Drake yazdı
-
Barry Warsaw yazdı
crashing.
-
Guido van Rossum yazdı
and the test for errors, so that an error in the default compare doesn't go undetected. This fixes SF Bug #132933 (submitted by effbot) -- list.sort doesn't detect comparision errors.
-
Fred Drake yazdı
Reported by Daniel May <mayds@ecn.purdue.edu>. De-tabified everywhere.
-
Fred Drake yazdı
included with Python.
-