- 18 Jun, 2002 7 commits
-
-
Guido van Rossum authored
In a fresh interpreter, type.mro(tuple) would segfault, because PyType_Ready() isn't called for tuple yet. To fix, call PyType_Ready(type) if type->tp_dict is NULL.
-
Guido van Rossum authored
-
Fred Drake authored
Patch contributed by Sean Reifschneider. Closes SF patch #570618.
-
Fred Drake authored
Instead of splitting a string and looping over it to call s.split(), use list comprehensions for readability.
-
Fred Drake authored
1. BUGFIX: In function makefile(), strip blanks from the nodename. This is necesary to match the behavior of parser.makeref() and parser.do_node(). 2. BUGFIX fixed KeyError in end_ifset (well, I may have just made it go away, rather than fix it) 3. BUGFIX allow @menu and menu items inside @ifset or @ifclear 4. Support added for: @uref URL reference @image image file reference (see note below) @multitable output an HTML table @vtable 5. Partial support for accents, to match MAKEINFO output 6. I added a new command-line option, '-H basename', to specify HTML Help output. This will cause three files to be created in the current directory: `basename`.hhp HTML Help Workshop project file `basename`.hhc Contents file for the project `basename`.hhk Index file for the project When fed into HTML Help Workshop, the resulting file will be named `basename`.chm. 7. A new class, HTMLHelp, to accomplish item 6. 8. Various calls to HTMLHelp functions. A NOTE ON IMAGES: Just as 'outputdirectory' must exist before running this program, all referenced images must already exist in outputdirectory. FLD: wrapped some long lines.
-
Fred Drake authored
This closes SF patch #569832.
-
Michael W. Hudson authored
> Looks like an experiment by Oren Tirosh that didn't get nuked. I > think you can safely lose it. It's gone.
-
- 17 Jun, 2002 10 commits
-
-
Fred Drake authored
Closes SF bug #556370.
-
Fred Drake authored
Closes SF bug #523473.
-
Fred Drake authored
PyMarshal_WriteObjectToFile(). This closes SF bug #533735.
-
Fred Drake authored
the "Download as text" link. Previously, it could map multiple source files to a single name since all files end up with the same extension. This closes SF bug #558279.
-
Andrew M. Kuchling authored
Tweak traceback display for consistency
-
Michael W. Hudson authored
-
Neal Norwitz authored
-
http://www.python.org/sf/566999Walter Dörwald authored
This patch enhances Python/import.c/find_module() so that unicode objects found in sys.path will be treated as legal directory names (The current code ignores anything that is not a str). The unicode name is converted to str using Py_FileSystemDefaultEncoding.
-
Piers Lauder authored
-
Piers Lauder authored
-
- 16 Jun, 2002 4 commits
-
-
Kurt B. Kaiser authored
Use a repr() on the subprocess side when fetching dict values for stack. The various dict entities are not needed by the debugger GUI, only their representation.
-
Tim Peters authored
-
Tim Peters authored
the Windowish builds.
-
Guido van Rossum authored
-
- 15 Jun, 2002 3 commits
-
-
Tim Peters authored
trying to delete a .pyc file that didn't exist (it needed to delete .pyo then).
-
Tim Peters authored
reason <wink>: can't unlink an open file on Windows.
-
Tim Peters authored
Python on Windows without it.
-
- 14 Jun, 2002 16 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
These built-in functions are replaced by their (now callable) type: slice() buffer() and these types can also be called (but have no built-in named function named after them) classobj (type name used to be "class") code function instance instancemethod (type name used to be "instance method") The module "new" has been replaced with a small backward compatibility placeholder in Python. A large portion of the patch simply removes the new module from various platform-specific build recipes. The following binary Mac project files still have references to it: Mac/Build/PythonCore.mcp Mac/Build/PythonStandSmall.mcp Mac/Build/PythonStandalone.mcp [I've tweaked the code layout and the doc strings here and there, and added a comment to types.py about StringTypes vs. basestring. --Guido]
-
Skip Montanaro authored
library. Since multiple versions can be installed simultaneously, it's crucial that you only select libraries and header files which are compatible with each other. Version checking is done from highest version to lowest. Building using version 1 of Berkeley DB is disabled by default because of the hash file bugs people keep rediscovering. It can be enabled by uncommenting a few lines in setup.py. Closes patch 553108.
-
Fred Drake authored
based on comments from David Abrahams. Added refcount information for these functions.
-
Guido van Rossum authored
when it can.
-
Michael W. Hudson authored
make -s rules :-)
-
Guido van Rossum authored
code.InteractiveConsole to do a much better job.
-
Fred Drake authored
change color on hover, only those that are link sources (href attributes).
-
Steve Holden authored
in the type documentation.
-
Guido van Rossum authored
-
Guido van Rossum authored
gotten from a weak reference to NULL instead of to None. This caused the following assert() to fail (but only in 2.2 in the debug build -- I have to find a better test case). Will backport.
-
Neal Norwitz authored
-
Fred Drake authored
This closes SF bug #550777.
-
Neal Norwitz authored
Write 4 bytes for co_stacksize, etc. to prevent writing out bad .pyc files which can cause a crash when read back in. (I forgot that frozen needs to be updated too for the test.)
-
Neal Norwitz authored
Write 4 bytes for co_stacksize, etc. to prevent writing out bad .pyc files which can cause a crash when read back in.
-
Neal Norwitz authored
Handle negative indices similar to slices.
-