- 10 Ock, 2002 6 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
Added documentation of the sendall() method, and a note to the send() method that it does not guarantee that all data is sent.
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
Thread.__bootstrap(): ignore exceptions in the self.__delete() call in the finally clause. An exception here could happen when a daemon thread exits after the threading module has already been trashed by the import finalization, and there's not much of a point in trying to insist doing the cleanup in that stage. This should fix SF bug ##497111: active_limbo_lock error at program exit.
-
Anthony Baxter yazdı
-
- 07 Ock, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
os.system(). This closes Python bug #500401, Debian bug #127507.
-
Anthony Baxter yazdı
manually with, e.g.: CC='gcc -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' ./configure
-
- 05 Ock, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
Based on comment sent to python-docs.
-
Fred Drake yazdı
-
- 27 Ara, 2001 5 kayıt (commit)
-
-
Jack Jansen yazdı
- Use -flat-namespace linker option to allow building on 10.1 and later. - Allows it to build on 10.1.1 and later (which use a different version numbering scheme for "uname"). Anthony asked me to check this in.
-
Jack Jansen yazdı
Anthony asked me to check it in.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
useful. Includes one correction in the precmd() description.
-
- 26 Ara, 2001 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
instead of begin_y and begin_x for derwin(), subpad(), and subwin(). Reported for derwin() by Eric Huss. Added class annotations for the window methods so they would be properly described in the index.
-
- 23 Ara, 2001 6 kayıt (commit)
-
-
Anthony Baxter yazdı
backport patch #495358 rfc822.AddressList and "<>" address
-
Anthony Baxter yazdı
Improve threading on Solaris, according to SF patch #460269, submitted by bbrox@bbrox.org / lionel.ulmer@free.fr. This adds a configure check and if all goes well turns on the PTHREAD_SCOPE_SYSTEM thread attribute for new threads. This should remove the need to add tiny sleeps at the start of threads to allow other threads to be scheduled. This is a semi-feature, but makes such a huge difference to the performance of Zope on Solaris that it's worthwhile (well, imho).
-
Anthony Baxter yazdı
in the std lib that should be using sendall(), rather than send() - I've tried to check each of the patches. Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method.
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
select not defensive. check for EINTR and make sure it's handled painlessly.
-
- 22 Ara, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
checkin (my fault!).
-
- 21 Ara, 2001 6 kayıt (commit)
-
-
Fred Drake yazdı
This fixes SF bug #495896. Fix up various markup consistency & style guide conformance nits.
-
Anthony Baxter yazdı
Make dumbdbm merely "dumb", rather than "terminally broken". Without this patch, it's almost impossible to use dumbdbm _without_ causing horrible datalossage. With this patch, dumbdbm passes my own horrible torture test, as well as the roundup test suite. dumbdbm really could do with a smidgin of a rewrite or two, but that's not suitable for the release21-maint branch. This patch should go into the trunk as well.
-
Anthony Baxter yazdı
SF bug 485175: buffer overflow in traceback.c. Bugfix candidate. tb_displayline(): the sprintf format was choking off the file name, but used plain %s for the function name (which can be arbitrarily long). Limit both to 500 chars max.
-
Anthony Baxter yazdı
Missing DECREFs when exception is raised in sys.excepthook.
-
Anthony Baxter yazdı
PySymtableEntry_New(): I'm not sure what this routine is doing, but it was obviously leaking an int object when whatever the heck it's looking for was found. Repaired that. This accounts for why entering function and class definitions at an interactive prompt leaked a reference to the integer 1 each time.
-
Anthony Baxter yazdı
Py_Initialize(): Apply patch by Jürgen Hermann to call _PyImport_FixupExtension() on the exceptions module. Now reload(exceptions) acts just like reload(sys) instead of raising an ImportError. This closes SF bug #422004.
-
- 20 Ara, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Add checks for stack underflow and overflow.
-
- 19 Ara, 2001 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
- 18 Ara, 2001 3 kayıt (commit)
-
-
Guido van Rossum yazdı
responses that the original parse227() routine can't handle are becoming more common. """ Change the 227 response parser to use a more liberal regular expression. This is needed for certain servers that (in violation of the standard) don't return the parentheses in the response. This fixes SF bug #441712 by Henrik Weber (not exactly using his patch). """
-
Jeremy Hylton yazdı
Add is_constant_false(), rev 1.41. Fixed print handling, rev. 1.41. Handle private names, 1.42. Make sure JUMP_ABS and POP_BLOCK blocks are contiguous, rev. 1.44. Make sure class object has no co_varnames, rev. 1.45. Fix typo in visitDict(), rev. 1.46. Generate correct code for continue in try/except, rev. 1.47.
-
Jeremy Hylton yazdı
Fix for sibling nodes that define the same free variable, rev. 1.6. Handle private names, rev. 1.7. Fix bug in handling of statements like "l[x:y] = 2", reb. 1.8. Fix symbol problem with slice assignment, rev. 1.9.
-
- 17 Ara, 2001 3 kayıt (commit)
-
-
Jeremy Hylton yazdı
Add __getitem__() to a stack to support visitContinue(). Move mangle() here and define correctly.
-
Jeremy Hylton yazdı
Only real change is to track movement of CO_ consts to here.
-
Jeremy Hylton yazdı
Brief summary: Improve stack depth calculation, 1.24, 1.25, 1.28 Wrong co_lntob, 1.20. XXX_NMAE ops should affect varnames, 1.21. Fix list comp code gen, 1.26. Fix _convert_NAME() for class bodies, 1.26.
-
- 15 Ara, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-