summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* damnAnthony Baxter2005-02-081-2/+2
|
* 2.3.5 finalAnthony Baxter2005-02-082-1/+6
|
* sligtly strengthen unit tests for copy.pyAlex Martelli2005-02-071-1/+27
|
* fix bug 1114776Alex Martelli2005-02-062-1/+19
|
* fix XMLFilterBase.resolveEntity() so the caller gets the resultFred Drake2005-02-031-1/+1
| | | | (PyXML bug #1112052)
* Security fix PSF-2005-001 for SimpleXMLRPCServer.py.Guido van Rossum2005-02-031-5/+29
|
* Fix typo in verbose output for RLock when the initial lock acquisition occurs.Brett Cannon2005-01-271-1/+1
| | | | Closes bug #1110998.
* Recompiled after source changes.Thomas Heller2005-01-251-0/+0
|
* 1.0.5, to match the python patchlevelAnthony Baxter2005-01-251-1/+1
|
* copy.py fixed to first lookup __copy__ from the instance being copied,Anthony Baxter2005-01-252-4/+75
| | | | rather than only looking at the type - this was broken in 2.3.
* pre-release bitsAnthony Baxter2005-01-252-4/+4
|
* At least one bug has been fixed in distutils, so increment the last part ofThomas Heller2005-01-201-1/+1
| | | | | the version number. For the distutils version numbering scheme, see http://mail.python.org/pipermail/distutils-sig/2005-January/004368.html
* Fix [ 1103844 ] fix distutils.install.dump_dirs() with negated options.Thomas Heller2005-01-201-2/+7
| | | | Backport from trunk.
* On OpenBSD, terminating IDLE with ctrl-c from the command line caused aKurt B. Kaiser2005-01-192-3/+7
| | | | | | | stuck subprocess MainThread because only the SocketThread was exiting. M NEWS.txt M run.py
* Backport configDialog.py rev 1.60:Kurt B. Kaiser2005-01-192-0/+7
| | | | | | | | | Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set" button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. M NEWS.txt M configDialog.py
* Backport EditorWindow rev 1.60 configHelpSourceEdit rev 1.7 15Jul04Kurt B. Kaiser2005-01-193-21/+33
| | | | | | | | | checking sys.platform for substring 'win' was breaking IDLE docs on Mac (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580. M EditorWindow.py M NEWS.txt M configHelpSourceEdit.py
* Backport rpc.py rev 1.28 dating from 21Jan04Kurt B. Kaiser2005-01-193-9/+15
| | | | | | | | | | | | | | | | | rpc.py:SocketIO - Large modules were generating large pickles when downloaded to the execution server. The return of the OK response from the subprocess initialization was interfering and causing the sending socket to be not ready. Add an IO ready test to fix this. Moved the polling IO ready test into pollpacket(). Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError". idlever.py should be 1.0.4 to align with NEWS.txt. There was no IDLE release at 2.3.1 which accounts for the unsync. M NEWS.txt M idlever.py M rpc.py
* If an extension can't be loaded, print warning and skip it instead ofKurt B. Kaiser2005-01-172-1/+8
| | | | erroring out.
* Improve error handling when .idlerc can't be created. This is a partialKurt B. Kaiser2005-01-172-2/+6
| | | | backport of configHandler.py, Revision 1.36, 11Jan05.
* Backport of fixes for #887242 and #1097739:Jack Jansen2005-01-111-1/+15
| | | | | | | | | | | | | If $MACOSX_DEPLOYMENT_TARGET is set, and >= 10.3, during configure we setup extensions to link with dynamic lookup. We also record the value in the Makefile, and distutils uses the same value to build extension modules. If MACOSX_DEPLOYMENT_TARGET is not set it defaults to the current OSX version. If we cannot use -undefined dynamic_lookup (such as on 10.2 or earlier) we link extensions directly against the dynamic library in the framework in stead of against the framework. This will fix building extensions for 2.3 after 2.4 has been installed too.
* Backport of 1.38:Jack Jansen2005-01-071-135/+136
| | | | Allow relative URLs for included databases and packages.
* Backport of 1.37:Jack Jansen2005-01-031-7/+43
| | | | | | | | | | - Added an "installer" flavor, which uses the "open" command to install something (overridable through Install-command entry) - Hidden status is now determined by flavor == hidden, not by missing Download-URL. Hidden packages behave like installer packages. - Made some error messages a bit more understandable. Because there's new functionality the version has been upped to 0.5.
* Backport:Jack Jansen2004-12-312-7/+13
| | | | | | Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destroot option to various tools, and do the right thing when we're doing a destroot install.
* Backport of 1.36:Jack Jansen2004-12-281-2/+2
| | | | | | | - getDefaultDatabase wasn't listed in __all__. - using a different database for non-final releases should only be done for X.Y.0. Non-final micro releases can use the default database just fine, as they are required to be backward compatible.
* Use zlib test suite from the trunk (rev. 2.67) on the 2.3 maintenance branchAndrew M. Kuchling2004-12-281-170/+93
|
* Bump idle version.Kurt B. Kaiser2004-12-231-1/+1
|
* The GUI was hanging if the shell window was closed while a raw_input()Kurt B. Kaiser2004-12-232-7/+17
| | | | | | | | was pending. Restored the quit() of the readline() mainloop(). http://mail.python.org/pipermail/idle-dev/2004-December/002307.html M NEWS.txt M PyShell.py
* Recompiled after source file changes.Thomas Heller2004-12-221-0/+0
|
* * closes SF bug/patch 967763Gregory P. Smith2004-12-191-0/+11
| | | | | | | | - fixes various memory leaks found by valgrind and a follup closer code inspection of the bsddb module. (merges r1.32 of _bsddb.c and an associated test case) - also merges the one line r1.37 _bsddb.c fix that fixes a leak on the rare DBEnv creation failed error path.
* Backport of fix for bug #1083645; skip test_imp if threading is not available.Brett Cannon2004-12-181-1/+5
|
* Don't have test_mkalias_relative exexute if sys.prefix does not exist.Brett Cannon2004-12-061-0/+2
| | | | Backport of fix for bug #1077302.
* get_boundary(): Fix for SF bug #1060941. RFC 2046 says boundaries may beginBarry Warsaw2004-11-061-1/+2
| | | | -- but not end -- with whitespace.
* test_boundary_with_leading_space(): Test case for SF bug #1060941. RFC 2046Barry Warsaw2004-11-061-0/+19
| | | | says boundaries may begin -- but not end -- with whitespace.
* SF 1055820: weakref callback vs gc vs threadsTim Peters2004-10-311-0/+199
| | | | | | | | In cyclic gc, clear all weakrefs to unreachable objects before allowing any Python code (weakref callbacks or __del__ methods) to run. This is a critical bugfix, affecting all versions of Python since weakrefs were introduced.
* Backport of fix for bug of year/<week of year>/<day of week> calculation thatBrett Cannon2004-10-282-14/+30
| | | | didn't handle %U for years starting on Monday.
* Backport from trunk:Thomas Heller2004-10-221-8/+3
| | | | | SF bug 917108: warnings.py does not define _test(). Removed the entire __name__ == '__main__' block.
* [Patch #1043972, for bug #1017553] filemode() returns an incorrect value for ↵Andrew M. Kuchling2004-10-201-27/+34
| | | | the mode 07111
* [Bug #1048816] Fix bug when you do Ctrl-K at the start of a line; fix from ↵Andrew M. Kuchling2004-10-191-0/+2
| | | | Stefan Heimann
* Add support for using %U and %W in strptime when year and day of the week areBrett Cannon2004-10-182-2/+61
| | | | | | also specified. Closes bug #1045381.
* Fix for SF bug # 1010102. The default is PureProxy not SMTPProxy.Barry Warsaw2004-10-091-1/+2
|
* Escape locale data for regex metacharacters.Brett Cannon2004-10-061-1/+2
| | | | Closes bug #1039270.
* Fix typo in docstring for system_methodSignature .Brett Cannon2004-10-031-1/+1
| | | | Backport of fix for bug #1038935 .
* __getitem__(): Fix docstring, SF 979924.Barry Warsaw2004-09-281-1/+1
|
* Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders.Phillip J. Eby2004-09-231-2/+16
| | | | (Backport to 2.3 maintenance branch.)
* There was an error in the Tk error dialog fix at Rev 1.81.4.3 which caused ↵Kurt B. Kaiser2004-09-221-2/+2
| | | | | | | | | starting w/o the subprocess to fail. This is the same error in the 2.4 version which was corrected at Rev 1.85, but missed in the backport! Thanks to Hans Gubitz for noticing this. M PyShell.py
* Convert bool results back to strings. Fixes #807871.Martin v. Löwis2004-09-181-1/+6
|
* backport ipv6 address fixSkip Montanaro2004-09-162-2/+17
|
* Backport [ 1010677 ] thread Module Breaks PyGILState_Ensure()Mark Hammond2004-09-011-0/+3
| | | | to the 2.3 maint branch.
* Patch #973204: Use -rpath instead of -R on Irix and True64.Martin v. Löwis2004-08-292-1/+7
|
* Patch #1014992: Never return more than a line from readline.Martin v. Löwis2004-08-251-3/+1
|