Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
fb616019
Commit
fb616019
authored
Oct 20, 1994
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the usual
parent
37be6f06
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
93 additions
and
5 deletions
+93
-5
BUGS
BUGS
+21
-3
ChangeLog
ChangeLog
+42
-0
README
README
+1
-2
TODO
TODO
+29
-0
No files found.
BUGS
View file @
fb616019
...
...
@@ -6,12 +6,33 @@ nother to make an entry in this file, unless it was a serious bug
==> Status indicators: (-) not fixed; (*) fixed; (?) don't know what to do.
======================================================================
BUGS found in 1.1 and fixed in 1.1.1
------------------------------------
(*) pow() should be declared varargs since it uses newgetargs
BUGS found in 1.1 and not yet fixed
-----------------------------------
(-) A built-in function using getargs() and expecting >= 1 argument
may dump core when called without arguments
BUGS found in 1.0.3 and fixed in 1.1
------------------------------------
(*) If class C doesn't define __cmp__, cmp(a,b) will return -2 and
[a,b].sort() will fail
BUGS found in 1.0.3 and not yet fixed
-------------------------------------
(-) print_error raises and then masks an error if softspace is not
defined (can't reproduce this one?)
BUGS found in 1.0.3 and fixed in 1.1
------------------------------------
(*) Syntax errors are reported in a silly way if multi-line tokens are
involved.
...
...
@@ -24,9 +45,6 @@ involved.
(*) various memory leaks (see purify report from anthony.baxter@aaii.oz.au)
(several leaks fixed anyway :-)
BUGS found in 1.0.3 and fixed in 1.1
------------------------------------
(*) unwanted entries in stack trace if err_clear() clears an error
that also set a stack trace
...
...
ChangeLog
View file @
fb616019
Thu Oct 20 08:31:02 1994 Guido van Rossum <guido@tesla>
* Modules/makesetup: should use $cc not cc
* configure.in, configure, config.h.in: test for presence of
stddef.h
* Include/structmember.h: include <stddef.h> if it exists
Wed Oct 19 11:45:35 1994 Guido Van Rossum <guido@tesla>
* Makefile.in: patch by Wolf-D. Ihlenfeld to use BINDIR etc
* Lib/tkinter/Tkinter.py: added option_{add,clear,get,readfile} to
Misc class
* Lib/poly.py: fix bug in minus()
* Modules/Setup.in: clarified optional SGI modules and improved
template for using *noconfig*
* Doc/Makefile: don't assum '.' is in $PATH
* Modules/mathmodule.c, Doc/libmath.tex: add hypot()
* Makefile.in: on libinstall, automatically run sharedinstall in
Modules
* Modules/Makefile.pre.in: always make sharedmods
* Modules/makesetup: quote $ in two places
* configure.in, acconfig.h.in, config.h.in, configure,
Modules/posixmodule.c: separate arg requirements for getpgrp() and
setpgrp()
* Nt/Python/makefile.nt.mak: added getargs()
Thu Oct 13 07:51:03 1994 Guido van Rossum <guido@voorn.cwi.nl>
* README: removed misleading comment about example Setup.* files
=================================
==> Release 1.1 (11 Oct 1994) <==
=================================
...
...
README
View file @
fb616019
...
...
@@ -68,8 +68,7 @@ yourself. Never edit Setup.in -- always edit Setup. Read the
comments in the file for information on what kind of edits you can
make. When you have edited Setup, Makefile and config.c in Modules
will automatically be rebuilt the next time you run make in the
toplevel directory. (There are some example Setup files which you may
copy to Setup for specific systems; have a look at Setup.*.)
toplevel directory.
If you want to change the optimization level of the build, assign to
the OPT variable on the toplevel make command; e.g. "make OPT=-g" will
...
...
TODO
View file @
fb616019
(*) newgetargs() dumps core in compat mode when NULL is passed in but
max is >0
(-) stack frame correspondence problem (Jim Roskind)
(-) invent new style (rename1.h) name for newgetargs
(-) make lots of places use newgetargs
(-) no tp_str member in typeobject
(-) getargs has small bugs (e.g. strange error msgs)
(-) sorting class instances broken if no __com__ defined
(-) readline 2.0 on sequent has ^C problem (works only first time)
(-) add explanatory comments to Setup (especially about SGI modules
like 'cd')
(-) Q3 ftp mail archive
(-) need to add truncate() and ftruncate() to posixmodule.c (Windows:
chsize(fd, size)
======================================================================
Release 1.1 (11 Oct 1994)
======================================================================
(*) 2 specific leaks: 1 PYTHONPATH; 2 reading code from .pyc
(-) if __getattr__ prints something, calling repr(x) from cmd line
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment