- 12 Nis, 2004 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Document the differences between them * Fix corner cases covered by the unittests * Use Py_RETURN_NONE where possible for dictionaries
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Applied app1() to listappend(). * Inlined ins() into its one remaining caller.
-
Raymond Hettinger yazdı
steps and further improves the speed of list append. * Add guards to the list iterator length method to handle corner cases.
-
- 11 Nis, 2004 8 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
removed the comment saying they don't work, and changed the build step to run them. If they're failing for someone else, please give details about what failed.
-
Tim Peters yazdı
-
Raymond Hettinger yazdı
separate equality tests. Now, all are set to their best timing.
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
- return the full size of the sockaddr_un structure, without which bind() fails with EINVAL; - set test_socketserver to use a socket name that meets the form required by the underlying implementation; - don't bother exercising the forking AF_UNIX tests on EMX - its fork() can't handle the stress.
-
Kurt B. Kaiser yazdı
M IOBinding.py M NEWS.txt M configDialog.py - If nulls somehow got into the strings in recent-files.lst EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
-
- 10 Nis, 2004 3 kayıt (commit)
-
-
Raymond Hettinger yazdı
did not stand-up to additional timings.
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
globaltrace_countfuncs() into file_module_function_of(). In that function use Michael Hudson's suggestion of gc.get_referrers() to back up from the code object to a function, then to a class's dict and finally to a class object if one exists.
-
- 09 Nis, 2004 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 08 Nis, 2004 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
- 07 Nis, 2004 5 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Skip Montanaro yazdı
relationships at program exit. Output is a bit prettier than that for --listfuncs but won't parse as easily using downstream postprocessing tools.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
pre-increment forms to post-increment forms. Post-incrementing also eliminates the need for negative array indices for oparg fetches. * In exception handling code, check for class based exceptions before the older string based exceptions.
-
Raymond Hettinger yazdı
BINARY_SUBSCR: * invert test for normal case fall through * eliminate err handling code by jumping to slow_case LOAD_LOCALS: * invert test for normal case fall through * continue instead of break for the non-error case STORE_NAME and DELETE_NAME: * invert test for normal case fall through LOAD_NAME: * continue instead of break for the non-error case DELETE_FAST: * invert test for normal case fall through LOAD_DEREF: * invert test for normal case fall through * continue instead of break for the non-error case
-
- 06 Nis, 2004 5 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Raymond Hettinger yazdı
Restores the self-documenting enum declaration.
-
Raymond Hettinger yazdı
This allows multiple flags to be tested in a single compare which eliminates unnecessary compares and saves a few bytes.
-
Hye-Shik Chang yazdı
been used. (Suggested by Martin v. Loewis)
-
- 05 Nis, 2004 2 kayıt (commit)
-
-
Tim Peters yazdı
tests of "why" against WHY_YIELD became useless. This patch removes them, but assert()s that why != WHY_YIELD everywhere such a test was removed. The test suite ran fine under a debug build (i.e., the asserts never triggered).
-
Raymond Hettinger yazdı
attribute name lookup.
-
- 04 Nis, 2004 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Andrew MacIntyre yazdı
the socket name must start with /socket32/. Unlike Unix systems, this file never exists in the file system.
-
Andrew MacIntyre yazdı
with major C compilers (VACPP, EMX+gcc and [Open]Watcom). Also tidy up the export of spawn*() symbols in the os module to match what is found/implemented.
-
Andrew MacIntyre yazdı
close() calls would attempt to free() the buffer already free()ed on the first close(). [bug introduced with patch #788249] Making sure that the buffer is free()ed in file object deallocation is a belt-n-braces bit of insurance against a memory leak.
-
- 03 Nis, 2004 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 02 Nis, 2004 2 kayıt (commit)
-
-
Skip Montanaro yazdı
Also, move pystack comment down next to it
-
Skip Montanaro yazdı
-