- 30 Eyl, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 19 Eyl, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 11 Eyl, 2002 2 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
This makes things a touch more like 2.2. Read the comments in Python/ceval.c for more details.
-
- 15 Agu, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 587993 ] SET_LINENO killer Remove SET_LINENO. Tracing is now supported by inspecting co_lnotab. Many sundry changes to document and adapt to this change.
-
- 08 Agu, 2002 1 kayıt (commit)
-
-
Jason Tishler yazdı
YA Cygwin module patch very similar to other patches that I have submitted. I tested under Cygwin and Red Hat Linux 7.1.
-
- 20 Tem, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
copying the result of fgetc() into an int variable before testing it for EOF.
-
- 18 Tem, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
- The log reader now provides a "closed" attribute similar to the profiler. - Both the profiler and log reader now provide a fileno() method. - Use METH_NOARGS where possible, allowing simpler code in the method implementations.
-
- 17 Tem, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
a docstring for the info attribute of the logreader object.
-
Fred Drake yazdı
write_header(): When we encounter a non-string object in sys.path, record a fairly mindless placeholder rather than dying. Possibly could record the repr of the object found, but not clear whether that matters.
-
Guido van Rossum yazdı
assume tp_iter and later fields exist. Use PyObject_GenericGetAttr instead of providing our own tp_getattr hook.
-
- 30 Haz, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Rename all occurrences of MS_WIN32 to MS_WINDOWS.
-
- 13 Haz, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 29 May, 2002 1 kayıt (commit)
-
-
Neil Schemenauer yazdı
and got confused by certain log files. Remove logreader_refill and the associated logic and replace with fgetc.
-
- 20 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Can go into 2.2.x, but not necessary.
-
- 03 Mar, 2002 1 kayıt (commit)
-
-
Andrew MacIntyre yazdı
Modules/ _hotshot.c dbmmodule.c fcntlmodule.c main.c pwdmodule.c readline.c selectmodule.c signalmodule.c termios.c timemodule.c unicodedata.c
-
- 12 Şub, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
Ensure we also build on VC7. Involves replacing largeint.h helper functions with msvc's native 64 bit integers.
-
- 08 Şub, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
returning NULL causes the interpreter to raise a SystemError. Noted by Anthony Baxter at Python 10.
-
- 12 Ock, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 04 Ara, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
written to the log file, and turn off the profiler. This closes SF bug #483925.
-
- 28 Kas, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Also changed <>-style #includes to ""-style in some places where the former didn't make sense.
-
- 09 Kas, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 29 Eki, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
to lists of values, giving the contents of all the ADD_INFO records seen so far. This is initialized agressively when the log file is opened, so that whoever is looking at the log reader can always see the initial data loaded into the data stream. ADD_INFO events later in the log file continue to be reported to the application layer as before. Add a new method, addinfo(), to the profiler. This can be used to insert additional ADD_INFO records into the profiler log. Fix the tp_flags and tp_name slots on the type objects.
-
- 23 Eki, 2001 1 kayıt (commit)
-
-
Jack Jansen yazdı
Got this to work in MacPython. The code is #ifdef macintosh style (to match the existing #ifdef MS_WINDOWS), but eventually ifdeffing on configure features is probably better.
-
- 15 Eki, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
Added support for saving the names of the functions observed into the profile log. Added support for using the profiler to measure coverage without collecting timing information (which is the slow part). Coverage logs can also be substantially smaller than profiling logs where per-line information is being collected. Updated comments on the log format; corrected record type values in some of the record descriptions.
-
- 13 Eki, 2001 3 kayıt (commit)
-
-
Tim Peters yazdı
of calling external functions.
-
Tim Peters yazdı
-
Tim Peters yazdı
This still doesn't compile on Windows, but at least I have a shot at fixing that now.
-
- 12 Eki, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
Still broken: GETTIMEOFDAY. This macro obviously isn't being defined on Windows, so there's logic errors here I'd rather Fred untangled.
-
Fred Drake yazdı
-