summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This is a fix for Issue5809: you shouldn't specify both --enable-framework andRonald Oussoren2009-06-083-5733/+4907
| | | | --enable-shared
* This checkin adds a symlink to the lib directory of a framework installRonald Oussoren2009-06-081-0/+1
| | | | | | | | | | | | of Python (on OSX), and the end result of that is that the combination of ``python-config --ldflags`` and ``python-config --libs`` refers to an actually existing location. I've done this in preference to changing python-config to specify '-framework Python' for linking because that doesn't work when you have multiple versions of python installed (because '-framework Python' will always link to the 'Current' version of the framework, without a possibility to specify a specific version).
* Typo fix.Georg Brandl2009-06-081-1/+1
|
* #6238: add fillchar to string.just function family.Georg Brandl2009-06-081-5/+6
|
* #6194: O_SHLOCK/O_EXLOCK are not really more platform independent than lockf().Georg Brandl2009-06-081-3/+2
|
* Remove period from end of headings.Georg Brandl2009-06-086-18/+12
|
* backport r73273Benjamin Peterson2009-06-071-0/+21
|
* remove has_keyBenjamin Peterson2009-06-071-1/+1
|
* use booleans for flagsBenjamin Peterson2009-06-072-19/+19
|
* always inherit from an appropiate base classBenjamin Peterson2009-06-071-4/+2
|
* inherit from objectBenjamin Peterson2009-06-071-1/+1
|
* Add Ezio.Georg Brandl2009-06-071-0/+3
|
* http://bugs.python.org/issue6192Kristján Valur Jónsson2009-06-072-1/+16
| | | | Add a feature to disable the Nagle algorithm on sockets in TCPServer
* backport r73268Benjamin Peterson2009-06-072-36/+2
|
* #6224: s/JPython/Jython/, and remove one link to a module nine years old.Georg Brandl2009-06-064-9/+6
|
* #6204: use a real reference instead of "see later".Georg Brandl2009-06-061-1/+1
|
* #6211: elaborate a bit on ways to call the function.Georg Brandl2009-06-061-5/+14
|
* #6206: fix test__locale.Georg Brandl2009-06-061-2/+1
|
* only test for named pipe when os.stat doesn't raise #6209Benjamin Peterson2009-06-051-3/+4
|
* Fix unittest discovery tests for Windows. Issue 6199Michael Foord2009-06-051-1/+3
|
* reverting r72823 : Python trunk has to use latin-1 encodingTarek Ziadé2009-06-051-2/+2
|
* Removed tests so that test_float pass on Windows. See issue 6198.Eric Smith2009-06-051-21/+21
|
* Fix test__locale on windows (Backport of r72365)Hirokazu Yamamoto2009-06-051-4/+18
|
* Add test for #3684.Georg Brandl2009-06-041-0/+9
|
* Minor documentation fixes for logging.Eric Smith2009-06-041-2/+2
|
* #6175: document that inet_aton supports alternate input formats with less ↵Georg Brandl2009-06-041-0/+3
| | | | than three dots.
* #6176: fix man page section for flock(2).Georg Brandl2009-06-041-1/+1
|
* #5967: note that the C slicing APIs do not support negative indices.Georg Brandl2009-06-041-4/+6
|
* Better name for "Ctor".Georg Brandl2009-06-041-2/+2
|
* #3584: ignore trailing newlines when placing the caret for a SyntaxError ↵Georg Brandl2009-06-041-1/+1
| | | | location.
* #5767: remove sgmlop support from xmlrpclib; the sgmlop parser does not do ↵Georg Brandl2009-06-042-56/+4
| | | | much validation and is no longer much faster than e.g. the cElementTree XMLParser.
* improved test coverage for distutils.command.install and cleaned it upTarek Ziadé2009-06-042-88/+145
|
* use the offical apiBenjamin Peterson2009-06-041-1/+1
|
* Avoid PendingDeprecationWarnings emitted by deprecated unittest methods.Georg Brandl2009-06-031-2/+2
|
* #6174: fix indentation in code example.Georg Brandl2009-06-031-7/+7
|
* Fix for line wrap ugly.Josiah Carlson2009-06-031-2/+1
|
* This fixes bug 5798 on OS X.Josiah Carlson2009-06-031-2/+8
| | | | This should also fix disconnect behavior cross-platform.
* assertion message was droppedTarek Ziadé2009-06-031-1/+1
|
* more cleanup and test coverage for distutils.extensionTarek Ziadé2009-06-032-22/+46
|
* added some tests for distutils.extension + code cleanupTarek Ziadé2009-06-033-16/+108
|
* Use the preferred form of raise statements in the docs.Georg Brandl2009-06-0312-27/+26
|
* Restore default testRunner argument in unittest.main to None. Issue 6177Michael Foord2009-06-022-1/+11
|
* improved distutils.spawn test coverage + cleaned it upTarek Ziadé2009-06-022-59/+73
|
* http://bugs.python.org/issue6117Kristján Valur Jónsson2009-06-021-10/+9
| | | | Fix O(n**2) performance problem in socket._fileobject
* Typo in socket.py. Thanks Pablo Torres Navarrete.Mark Dickinson2009-06-021-1/+1
|
* Fixes issue6169: it was possible for two ipaddr network addresses to compareGregory P. Smith2009-06-022-19/+30
| | | | as both < and > than eachother.
* Fix compilation error with gcc 4.3.2Antoine Pitrou2009-06-011-1/+3
|
* improved distutils.dist test coverage, pep-8 compliancyTarek Ziadé2009-06-012-61/+103
|
* #4547: When debugging a very large function, it was not alwaysAmaury Forgeot d'Arc2009-06-013-2/+22
| | | | possible to update the lineno attribute of the current frame.
* Sync up __version__ number with the version of the ipaddr-py project thisGregory P. Smith2009-06-011-13/+1
| | | | | | | library came from that it matches. Remove the former apache license text now that its been contributed to PSF to avoid confusion.