index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
load_string(): Force use of unsigned compare in a context that was
Tim Peters
2001-11-12
1
-6/+8
*
Limit string size on one-character-strings. Fixes #480384.
Martin v. Löwis
2001-11-11
1
-2/+2
*
Patch in bug report #477700: Fix memory leaks in gdbm & curses.
Martin v. Löwis
2001-11-11
2
-3/+5
*
Patch #473265: UpdatePairedHandlers nonsensical.
Martin v. Löwis
2001-11-10
1
-3/+3
*
Merge 1.42 from PyXML: Flag errors resulting from argument conversion problems.
Martin v. Löwis
2001-11-10
1
-2/+1
*
Use PyObject_CheckReadBuffer().
Jeremy Hylton
2001-11-09
1
-6/+1
*
Fix memory leak. This is part of SF patch #478006.
Fred Drake
2001-11-09
1
-0/+1
*
Fix memory leak. This is (very!) similar to part of SF patch #478006.
Fred Drake
2001-11-09
1
-0/+1
*
Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly
Michael W. Hudson
2001-11-09
2
-5/+10
*
Fix memory leaks detecting in bug report #478003.
Martin v. Löwis
2001-11-07
2
-5/+11
*
Remove obsolete e-mail address
Andrew M. Kuchling
2001-11-05
1
-1/+1
*
SF patch 473749 compile under OS/2 VA C++, from Michael Muller.
Tim Peters
2001-11-05
1
-1/+4
*
Correct argument parsing for alp_getstatus, which is METH_VARARGS.
Martin v. Löwis
2001-11-03
1
-1/+1
*
Patch #474169: Move fdopen calls out of critical section.
Martin v. Löwis
2001-11-02
1
-4/+8
*
Correct getnameinfo refcounting and tuple parsing. Fixes #476648.
Martin v. Löwis
2001-11-02
1
-6/+4
*
Simplify initmd5() to use PyModule_AddIntConstant().
Fred Drake
2001-11-02
1
-3/+2
*
Clean up a Tab inconsistency.
Fred Drake
2001-11-02
1
-4/+2
*
[Patch #476612] Add attributes from PEP247 to the md5 and sha modules
Andrew M. Kuchling
2001-11-02
2
-4/+11
*
has_finalizer(): simplified "if (complicated_bool) 1 else 0" to
Tim Peters
2001-11-01
1
-8/+3
*
Add has_finalizer predictate function. Use it when deciding which
Neil Schemenauer
2001-11-01
1
-14/+26
*
SF bug #477059 (my own): __del__ on new classes vs. GC.
Guido van Rossum
2001-11-01
1
-1/+3
*
Make the gc.collect() function respect the collection lock. This fixes
Neil Schemenauer
2001-10-31
1
-4/+11
*
Change the limit on the input size for b2a_base64 to what will fit in
Guido van Rossum
2001-10-30
1
-1/+3
*
PySocketSock_connect_ex(): On Windows, return the correct Windows exit
Tim Peters
2001-10-30
1
-1/+6
*
Make the low-level log-reader object export a dictionary mapping keys
Fred Drake
2001-10-29
1
-45/+163
*
Oops. In the tp_name field, the name should be "_socket.socket", not
Guido van Rossum
2001-10-28
1
-2/+2
*
Made SocketType and socket the same thing: a subclassable type whose
Guido van Rossum
2001-10-27
1
-119/+167
*
Add sendall() method, which loops until all data is written or an
Guido van Rossum
2001-10-26
1
-2/+44
*
Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck)
Guido van Rossum
2001-10-25
1
-3/+13
*
After discussion with itojun, it was clarified that Tru64 is in error,
Martin v. Löwis
2001-10-25
1
-1/+3
*
(experimental) "finditer" method/function. this works pretty much
Fredrik Lundh
2001-10-24
1
-0/+28
*
SF patch #474590 -- RISC OS support
Guido van Rossum
2001-10-24
4
-38/+23
*
Fix typo. Thanks to Jack Jansen for spotting it.
Martin v. Löwis
2001-10-24
1
-1/+1
*
Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED and
Martin v. Löwis
2001-10-24
1
-7/+40
*
Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfo
Martin v. Löwis
2001-10-24
1
-0/+6
*
Added missing cast.
Jack Jansen
2001-10-23
1
-1/+1
*
Got this to work in MacPython. The code is #ifdef macintosh style (to match t...
Jack Jansen
2001-10-23
1
-2/+10
*
Convert the ref() and proxy() implementations to use the new
Fred Drake
2001-10-23
1
-2/+2
*
another major speedup: let sre.sub/subn check for escapes in the
Fredrik Lundh
2001-10-22
1
-30/+89
*
sre.split should return the last segment, even if empty
Fredrik Lundh
2001-10-22
1
-11/+10
*
Adding missing "static" declarations (found by "make smelly").
Neil Schemenauer
2001-10-21
2
-2/+2
*
fixed character set description in docstring (SRE uses Python
Fredrik Lundh
2001-10-21
1
-96/+41
*
sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity
Fredrik Lundh
2001-10-21
1
-0/+17
*
rewrote the pattern.sub and pattern.subn methods in C
Fredrik Lundh
2001-10-21
1
-113/+306
*
Change clear_handlers argument to indicate whether this is an initialization.
Martin v. Löwis
2001-10-21
1
-9/+10
*
rewrote the pattern.split method in C
Fredrik Lundh
2001-10-20
1
-12/+136
*
Add two forgotten 'break' statements
Andrew M. Kuchling
2001-10-20
1
-15/+40
*
(Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compile
Guido van Rossum
2001-10-19
1
-1/+1
*
SF patch #460805 by Chris Gonnerman: Support for unsetenv()
Guido van Rossum
2001-10-19
1
-0/+34
*
SF patch #443759: Add Interface to readline's add_history
Guido van Rossum
2001-10-19
1
-0/+18
[next]