- 19 Agu, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
Fix comment typo
-
- 18 Agu, 2000 5 kayıt (commit)
-
-
Sjoerd Mullender yazdı
-
Barry Warsaw yazdı
have access to Purify anymore.
-
Barry Warsaw yazdı
been closed. Don't try to reclose it. Found by Insure.
-
Barry Warsaw yazdı
PyList_Append() always incref's the inserted item. Be sure to decref it regardless of whether the append succeeds or fails.
-
Barry Warsaw yazdı
Py_FatalError() should reflect that.
-
- 16 Agu, 2000 3 kayıt (commit)
-
-
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ı
-
Fred Drake yazdı
of the init_socket() function. This module is now *always* _socket.
-
- 15 Agu, 2000 7 kayıt (commit)
-
-
Fred Drake yazdı
Minor updates for BeOS R5. Use of OSError in test.test_fork1 changed to TestSkipped, with corresponding change in BeOS/README (by Fred). This closes SourceForge patch #100978.
-
Tim Peters yazdı
in binascii.c (only on platforms with signed chars -- although Py_CHARMASK is documented as returning an int, it only does so on platforms with signed chars).
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
commonly used functions to convert an arbitrary binary string into a hexadecimal digit representation and back again. These are often (and often differently) implemented in Python. Best to have one common fast implementation. Specifically, binascii_hexlify(): a.k.a. b2a_hex() to return the hex representation of binary data. binascii_unhexlify(): a.k.a. a2b_hex() to do the inverse conversion (hex digits to binary data). The argument must have an even length, and must contain only hex digits, otherwise a TypeError is raised.
-
Barry Warsaw yazdı
after a brief conversation with TP. First, the return values of the PyString_* function calls should be checked for errors. Second, bit-manipulations should be used instead of division for spliting the byte up into its 4 bit digits.
-
Barry Warsaw yazdı
to this module to mirror sha's hexdigest() method.
-
Mark Hammond yazdı
The existing win32_error() function now returns the new(ish) WindowsError, ensuring we get correct error messages.
-
- 14 Agu, 2000 1 kayıt (commit)
-
-
Mark Hammond yazdı
This is an enhancement to a prior patch (100941) ... [T]his patch removes the risk of deadlock waiting for the child previously present in certain cases. It adds tracking of all file handles returned from an os.popen* call and only waits for the child process, returning the exit code, on the closure of the final file handle to that child.
-
- 12 Agu, 2000 1 kayıt (commit)
-
-
Trent Mick yazdı
and fwrite return size_t, so it is safer to cast up to the largest type for the comparison. I believe the cast is required at all to remove compiler warnings.
-
- 11 Agu, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-R on Solaris and -rpath on IRIX. This closes SourceForge bug #110613 (Jitterbug PR#202), reported by <aa8vb@yahoo.com>.
-
- 10 Agu, 2000 2 kayıt (commit)
-
-
Fred Drake yazdı
Python.h is included before standard headers since we set _GNU_SOURCE there. This ensures that strdup() is prototyped.
-
Peter Schneider-Kamp yazdı
(and yes, "Currintly" also counts <0.5 wink>)
-
- 09 Agu, 2000 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
for undefined groups
-
- 07 Agu, 2000 3 kayıt (commit)
-
-
Jack Jansen yazdı
-
Fredrik Lundh yazdı
(this should fix Sjoerd's xmllib problem) -- added skip field to INFO header -- changed compiler to generate charset INFO header -- changed trace messages to support post-mortem analysis
-
Fredrik Lundh yazdı
for excessive recursion.
-
- 06 Agu, 2000 1 kayıt (commit)
-
-
Vladimir Marangozov yazdı
Small stylistic changes by VM: - is_enabled() -> isenabled() - static ... Py_<func> -> static ... gc_<func>
-
- 04 Agu, 2000 2 kayıt (commit)
-
-
Moshe Zadka yazdı
-
Moshe Zadka yazdı
-
- 03 Agu, 2000 6 kayıt (commit)
-
-
Guido van Rossum yazdı
This doesn't change the copyright status for these files -- just the markings! Doing it on the main branch for these three files for which the HEAD revision was pushed back into 1.6.
-
Fredrik Lundh yazdı
-- improved error messages -- factored out SRE_COUNT; the same code is used by SRE_OP_REPEAT_ONE_TEMPLATE -- minor cleanups
-
Guido van Rossum yazdı
This is a notice without a date, which apparently is not a claim to copyright but only advice to the reader. IANAL. :-)
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 02 Agu, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Andrew M. Kuchling yazdı
escape, as documented in the comment for the check_escape() function
-
- 01 Agu, 2000 4 kayıt (commit)
-
-
Fredrik Lundh yazdı
-- added REPEAT_ONE operator -- added ANY_ALL operator (used to represent "(?s).")
-
Fredrik Lundh yazdı
-- fixed literal check in branch operator (this broke test_tokenize, as reported by Mark Favas) -- added REPEAT_ONE operator (still not enabled, though) -- added some debugging stuff (maxlevel)
-
Tim Peters yazdı
-
Fredrik Lundh yazdı
-- reverted REPEAT operator to use "repeat context" strategy (from 0.8.X), but done right this time. -- got rid of backtracking stack; use nested SRE_MATCH calls instead (should probably put it back again in 0.9.9 ;-) -- properly reset state in scanner mode -- don't use aggressive inlining by default
-