Jack Jansen
b2a57722a8
It turns out that some calls return AEDesc records that are "borrowed",
...
the AEDesc data shouldn't be disposed when the Python object is.
Added a C call AEDesc_NewBorrowed() to create these objects and a Python
method old=AEDesc.AutoDispose(onoff) to change auto-dispose state.
2003-01-17 23:11:17 +00:00
Fred Drake
aac8c58f0b
Various markup changes.
2003-01-17 22:50:10 +00:00
Fred Drake
42b567fce9
Fix a couple of markup errors.
2003-01-17 22:47:33 +00:00
Tim Peters
a8b2e32a7b
CVS patch 669645: wininst.exe missing in Windows installer.
...
Not anymore it ain't.
2003-01-17 21:50:32 +00:00
Fred Drake
376f0ef30c
Clean up some files that LaTeX2HTML drops in the HTML output directory
...
sometimes.
2003-01-17 21:25:04 +00:00
Tim Peters
8b19a93b87
When time.localtime() is passed a tick count the platform C localtime()
...
function can't handle, don't raise IOError -- that doesn't make sense.
Raise ValueError instead.
Bugfix candidate.
2003-01-17 20:08:54 +00:00
Just van Rossum
504377d4dd
make sure src exists before creating a symlink
2003-01-17 20:02:06 +00:00
Raymond Hettinger
7b0cf76b72
* Migrate sample distribution test from random.py to test_random.py.
...
* Use Sets module to more clearly articulate a couple of tests.
2003-01-17 17:23:23 +00:00
Raymond Hettinger
ee1bded046
Correct typos in example code.
2003-01-17 16:20:23 +00:00
Jack Jansen
c99b675ff4
For reasons unknown previewProc and filterProc were disabled. Enabled them.
2003-01-17 16:14:31 +00:00
Jack Jansen
f0d12da482
Added methods AskFileForOpen(), AskFileForSave() and AskFolder(). These
...
are going to replace StandardGetFile() and friends. Main differences are
that these allow you to ask for specific datatypes to be returned (FSSpec,
FSRef, string, unicode or subtypes thereof) and that they provide access
to underlying features of Navigation Services through keyword arguments.
2003-01-17 16:04:39 +00:00
Gregory P. Smith
b6c9f78074
bugfix: do not double-close DB cursor during deallocation when the
...
underlying DB has already been closed (and thus all of its cursors).
This fixes a potential segfault.
SF pybsddb bug id 667343
bugfix: close the DB object when raising an exception due to an error
during DB.open. This prevents an exception when closing the
environment about not all databases being closed.
SF pybsddb bug id 667340
2003-01-17 08:42:50 +00:00
Gregory P. Smith
aa71f5f2b4
bugfix: allow the module to work with python compiled without thread support.
...
closes sourceforge pybsddb bug id 669533.
2003-01-17 07:56:16 +00:00
Gregory P. Smith
c25fd3fb48
bugfix: disallow use of DB_TXN after commit() or abort(), prevents a
...
coredump or segmentation violation.
Sourceforge patch ID 664896:
http://sourceforge.net/tracker/index.php?func=detail&aid=664896&group_id=13900&atid=313900
The bug was reported on the pybsddb-users mailing list.
2003-01-17 07:52:59 +00:00
Kurt B. Kaiser
5ec186b1cb
Patch 611069 (Christos Georgiou) IDLE TODO:left/right when selected text
...
M EditorWindow.py
M NEWS.txt
M TODO.txt
2003-01-17 04:04:06 +00:00
Kurt B. Kaiser
9fd0799ff5
SF Bug 667812: Some Linux distros have Alt and Meta reversed.
2003-01-16 21:40:21 +00:00
Michael W. Hudson
976249be74
A. Lloyd Flanagan pointed out a spelling error on c.l.py.
2003-01-16 15:39:07 +00:00
Raymond Hettinger
6aa1c3f4cc
Let test_random cover the endpoints.
...
Strengthen slicing tests.
Improved variable names.
2003-01-16 14:00:15 +00:00
Raymond Hettinger
a9f18dc0f0
Test optional slice arguments.
...
Add backwards compatibility test.
2003-01-16 13:02:25 +00:00
Raymond Hettinger
4422375c72
Added doctest for examples in the library reference.
...
Added random test from bisect to augment the finite precomputed checks.
2003-01-16 12:31:36 +00:00
Raymond Hettinger
d230550a6b
Convert to unittest format so that more tests can be added cleanly.
2003-01-16 12:02:35 +00:00
Martin v. Löwis
13dd9d9978
Patch #662454 : import a.b as c is ok, fixes #660811 .
2003-01-16 11:30:08 +00:00
Martin v. Löwis
2206cd17ce
Properly find and install icons even if calling setup.py from the build dir.
2003-01-16 11:03:33 +00:00
Martin v. Löwis
6f2adc7cd0
Catch IOErrors.
2003-01-16 11:02:43 +00:00
Martin v. Löwis
71b755646a
Support copying booleans. Fixes #668925 .
2003-01-16 10:40:00 +00:00
Mark Hammond
d800ae12f2
This test previously failed when run from the 'test' directory. In that
...
case, the test module created is actually a sub-package of 'test', thus
the module is named 'test.areallylongpackage...' - this caused failure.
Replace the hard-coded module names with __name__ attributes, which
correctly reflects any hierarchy.
2003-01-16 04:56:52 +00:00
Jack Jansen
8834009338
On Mac OS X calling setlocale will raise locale.Error. This isn't fatal,
...
so just continue testing. Fixes #668787 .
2003-01-15 23:43:02 +00:00
Mark Hammond
c9083b66bd
Correct docstring for SetValueEx()
2003-01-15 23:38:15 +00:00
Jack Jansen
62fe75509c
Checking in Brett Cannon's patch #662053 , which fixes bug #661354 .
...
_strptime can now handle getting two empty strings as the timezone information.
2003-01-15 22:59:39 +00:00
Jack Jansen
791f7d4783
Added ismount().
...
Fixes #661762 , bugfix candidate.
2003-01-15 22:45:48 +00:00
Jack Jansen
2d0909b9cb
Implemented FSCatalogInfo structure support, and used this to implement
...
FSSpec.SetDates() and GetDates(). Closes #662836 .
2003-01-15 22:36:16 +00:00
Skip Montanaro
a5caa6fcd9
reference the os module and the lock flags in the os.open() function.
...
(Someone please review what I wrote for accuracy.)
2003-01-15 21:08:19 +00:00
Raymond Hettinger
2dc505e058
* Add test for __cmp__()
...
* Add doctest for example in the library reference manual
2003-01-15 16:15:38 +00:00
Neil Schemenauer
f60cdff920
Remove misleading advice. VERSION was not intended to be used that way.
2003-01-15 16:04:43 +00:00
Raymond Hettinger
3801ec7ff3
Document that __cmp__() is not defined for sets.
...
Note, that list.sort() is undefined for lists of sets.
Add the ... prompt to the example so it runs in doctest.
2003-01-15 15:46:05 +00:00
Martin v. Löwis
b32c886d71
Gyro Func for patch #661719 .
2003-01-15 11:53:13 +00:00
Martin v. Löwis
0c6774d92b
Patch #661719 : Expose compilation errors as exceptions on request.
2003-01-15 11:51:06 +00:00
Martin v. Löwis
d69663d300
Patch #473586 : Implement CGIXMLRPCRequestHandler.
2003-01-15 11:37:23 +00:00
Raymond Hettinger
5d5e7c0e34
SF patch #664192 bug #661913 : inconsistent error messages between string
...
and unicode
Patch by Christopher Blunck.
2003-01-15 05:32:57 +00:00
Mark Hammond
a2e303c32d
Fix [ 665014 ] files with long lines and an encoding crash.
...
Ensure that the 'size' arg is correctly passed to the encoding reader to
prevent buffer overflows.
2003-01-14 23:15:22 +00:00
Kurt B. Kaiser
6fa0911f5a
Updated IDLE Help to reflect changes in Additional Help Source
...
Configuration implementation.
2003-01-14 22:06:11 +00:00
Kurt B. Kaiser
8e92bf7699
M Bindings.py
...
M EditorWindow.py
M NEWS.txt
M config-main.def
M configDialog.py
M configHandler.py
M configHelpSourceEdit.py
M configSectionNameDialog.py
- Change default: IDLE now starts with Python Shell.
- Removed the File Path from the Additional Help Sources scrolled list.
- Add capability to access Additional Help Sources on the web if the
Help File Path begins with //http or www. (Otherwise local path is
validated, as before.)
- Additional Help Sources were not being posted on the Help menu in the
order entered. Implement sorting the list by [HelpFiles] 'option'
number.
- Add Browse button to New Help Source dialog. Arrange to start in
Python/Doc if platform is Windows, otherwise start in current directory.
- Put the Additional Help Sources directly on the Help menu instead of in
an Extra Help cascade menu. Rearrange the Help menu so the Additional
Help Sources come last. Update help.txt appropriately.
- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
2003-01-14 22:03:31 +00:00
Guido van Rossum
50e92235e7
Explicitly raise an exception in __cmp__ -- this clarifies that cmp()
...
is not supported on sets. (Unfortunately, sorting a list of sets may
still return random results because it uses < exclusively, but for
sets that inly implements a partial ordering. Oh well.)
2003-01-14 16:45:04 +00:00
Raymond Hettinger
8bb90a59a6
Replaced POP() with STACKADJ(-1) on lines where the result wasn't used.
...
The two are semantically equivalent, but the first triggered a compiler
warning about an unused variable. Note, the preceding steps had already
accessed and decreffed the variable so the reference counts were fine.
2003-01-14 12:43:10 +00:00
Raymond Hettinger
2d375f78a5
SF bug #661184 : inspect.getsource bug
...
inspect.getsource would crash with one line definitions like:
def f(x): return x
or
f = lambda x: x
2003-01-14 02:19:36 +00:00
Just van Rossum
9896ea24f9
make sure Info.plist has a CFBundleIdentifier entry
2003-01-13 23:30:04 +00:00
Tim Peters
ddc82ea944
A new test here was failing on Windows, because the test before it never
...
managed to delete the @test file it intended to delete. Also, I don't
see a reason to create a 4MB file in the new test, so cut it back to 16K.
2003-01-13 21:38:45 +00:00
Guido van Rossum
87fec22476
Duh. cmdqueue should be an instance variable, not a class variable.
...
This was introduced in 1998 in rev. 1.13, where I imported extensive
patches that, I am sad to say, I didn't review as carefully as I
should have.
2003-01-13 21:18:54 +00:00
Guido van Rossum
eef260757c
Duh. The do_EOF() implementation was bogus. Make it more like
...
do_quit() -- but print a blank line first.
2003-01-13 21:13:55 +00:00
Neal Norwitz
1a9975014f
Fix SF bug #667147 , Segmentation fault printing str subclass
...
Fix infinite recursion which occurred when printing an object
whose __str__() returned self.
Will backport
2003-01-13 20:13:12 +00:00