- 26 May, 2006 29 commits
-
-
Bob Ippolito authored
-
Andrew Dalke authored
-
Bob Ippolito authored
-
Andrew M. Kuchling authored
-
Tim Peters authored
-
Andrew Dalke authored
-
Andrew Dalke authored
The new split functions use a preallocated list. Added tests which exceed the preallocation size, to exercise list appends/resizes. Also added more edge case tests.
-
Tim Peters authored
-
Ronald Oussoren authored
- Some small bugfixes for the IDLE.app wrapper - Tweaks to build-installer to ensure that python gets build in the right way, including sqlite3. - Updated readme files
-
Martin Blais authored
* Added socket.recv_buf() and socket.recvfrom_buf() methods, that use the buffer protocol (send and sendto already did). * Added struct.pack_to(), that is the corresponding buffer compatible method to unpack_from(). * Fixed minor typos in arraymodule.
-
Fredrik Lundh authored
but Trent's copy thinks that it's an anachronism...
-
Andrew M. Kuchling authored
-
Fredrik Lundh authored
LOCAL inlining; also added some missing whitespace
-
Ronald Oussoren authored
target. Until now users had to use 'make frameworkinstall' to install python when it is configured with '--enable-framework'. This tends to confuse users that don't hunt for readme files hidden in platform specific directories :-)
-
Ronald Oussoren authored
after the normal include directories when looking for the version of sqlite to use. - On OSX: * Extract additional include and link directories from the CFLAGS and LDFLAGS, if the user has bothered to specify them we might as wel use them. * Add '-Wl,-search_paths_first' to the extra_link_args for readline and sqlite. This makes it possible to use a static library to override the system provided dynamic library.
-
Fredrik Lundh authored
-
Jack Diederich authored
-
Fredrik Lundh authored
for SRE and others. applied Py_LOCAL to relevant portion of ceval, which gives a 1-2% speedup on my machine. ymmv.
-
Georg Brandl authored
-
Ronald Oussoren authored
-
Andrew Dalke authored
-
Jack Diederich authored
-
Andrew Dalke authored
-
Fredrik Lundh authored
length (thanks, neal!). and yes, I've verified that this doesn't slow things down ;-)
-
Fredrik Lundh authored
~15% faster for the current tests (which is noticable faster than a corre- sponding find call). thanks to neal-who-never-sleeps for the tip.
-
Georg Brandl authored
-
Fredrik Lundh authored
feel free to improve the documentation and the docstrings.
-
Ronald Oussoren authored
tried to update one item in a tuple.
-
Andrew M. Kuchling authored
-
- 25 May, 2006 11 commits
-
-
Fredrik Lundh authored
this is on par with a corresponding find, and nearly twice as fast as split(sep, 1) full tests, a unicode version, and documentation will follow to- morrow.
-
Tim Peters authored
The SIGCHECK macro defined here has always been bizarre, but it apparently causes compiler warnings on "Sun Studio 11". I believe the warnings are bogus, but it doesn't hurt to make the macro definition saner. Bugfix candidate (but I'm not going to bother).
-
Tim Peters authored
use the Windows time.clock() implementation on Win64.
-
Brett Cannon authored
-
Bob Ippolito authored
-
Tim Peters authored
-
Tim Peters authored
QueryPerformanceCounter(), but we believe Win64 does support it now. So use in time.clock(). It would be peachy if someone with a Win64 box tried this ;-)
-
Brett Cannon authored
Change test_values so that it compares the lowercasing of group names since getgrall() can return all lowercase names while getgrgid() returns proper casing. Discovered on Ubuntu 5.04 (custom).
-
Ronald Oussoren authored
-
Georg Brandl authored
-
Bob Ippolito authored
-