summaryrefslogtreecommitdiffstats
path: root/PC/config.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Create _ast module.Martin v. Löwis2006-02-271-0/+2
| | | | Cleanup Python-ast.c generation.
* Add _lsprof.Martin v. Löwis2006-02-141-0/+2
|
* Make zlib builtin.Martin v. Löwis2006-01-031-1/+3
|
* Update the PC configuration and project files for sha256 and sha512.Raymond Hettinger2005-08-241-4/+8
|
* SF patch #941881: PEP 309 Implementation (Partial Function Application).Raymond Hettinger2005-02-281-0/+2
| | | | | Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
* Supply the _subprocess module under 7.1. I'm not sure what the statusTim Peters2004-10-121-0/+3
| | | | of this should be on non-WIN32 Windows variants.
* Remove rotor and xreadlines from VC 7.1 build.Tim Peters2004-08-311-4/+0
|
* Add missing _codecs_iso2022 module of cjkcodecs. I'll add unittestHye-Shik Chang2004-07-281-0/+2
| | | | for it soon.
* Woo hoo! All the encoding tests pass on Windows (& I downloaded theTim Peters2004-07-181-8/+10
| | | | 14 input files needed to run all of them).
* More cjkcodecs recovery: Python at least compiles on Window again.Tim Peters2004-07-181-40/+0
|
* Remove the pcre module.Thomas Heller2004-06-021-2/+0
|
* * Restore the pure python version of heapq.py.Raymond Hettinger2004-04-191-2/+2
| | | | * Mark the C version as private and only use when available.
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-0/+2
| | | | | | * Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming
* Add cjkcodecs to build processMartin v. Löwis2004-01-211-0/+53
|
* SF Patch #864863: Bisect C implementationRaymond Hettinger2004-01-051-0/+2
| | | | (Contributed by Dmitry Vasiliev.)
* Update build procedure to VC 7.1; make more modules builtin.Martin v. Löwis2004-01-021-0/+14
|
* Convert heapq.py to a C implementation.Raymond Hettinger2003-11-081-0/+2
|
* Patch #714957: Explain ADDMODULE MARKER.Martin v. Löwis2003-04-181-2/+2
|
* Move itertools module from the sandbox and into production.Raymond Hettinger2003-02-011-0/+2
|
* PEP 302 + zipimport:Just van Rossum2002-12-301-0/+2
| | | | | | | | | | | | | - new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again.
* Taught the Windows build about _randommodule.c. This is compiledTim Peters2002-12-291-0/+2
| | | | | into the core DLL, since it's not much code and lots of stuff uses it (e.g., try getting a tempfile name without it).
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-071-4/+0
| | | | | | + I'm not sure what to do about configure.in. Left it alone. + Ditto pyexpat.c. Fred or Martin will know what to do.
* Removed newmodule.c from the project, and removed references to it fromTim Peters2002-06-161-2/+0
| | | | the Windowish builds.
* Get hotshot closer to compiling on Windows.Tim Peters2001-10-121-0/+2
| | | | | Still broken: GETTIMEOFDAY. This macro obviously isn't being defined on Windows, so there's logic errors here I'd rather Fred untangled.
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-0/+3
|
* Teach Windows build about the _weakref module.Tim Peters2001-02-021-0/+2
|
* Assorted xreadlines problems:Tim Peters2001-01-091-0/+4
| | | | | | | Wasn't built on Windows; not in config.c either. Module init function missing DL_EXPORT magic. test_xreadline output file obviously wrong (started w/ "test_xrl"). test program very unclear about what was expected.
* Enable the binascii module for Win64. It builds and passes the test suite.Trent Mick2000-10-041-3/+1
| | | | | | (I had explicitly disabled it a while ago, possibly unecessarily, along with rgbimg, audioop, and imageop, which are advertised as "not for 64-bit platforms.)
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-10/+0
| | | | This should match the situation in the 1.6b1 tree.
* Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,Thomas Wouters2000-07-221-29/+29
| | | | | char**) and return an int even on PC platforms. If not, please fix PC/utils/makesrc.c ;-P
* Add "exceptions" to list of built-in modules for the sake ofGuido van Rossum2000-07-121-0/+1
| | | | | | sys.builtin_module_names. (Noticed by Toby Dickenson.) [Tim, please test!]
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
|
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
|
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-0/+6
|
* Trent Mick:Guido van Rossum2000-05-081-3/+17
| | | | | | The following modules are specifically excluded in the Win64 build: audioop, binascii, imageop, rgbimg. They are advertised as heavily 32-bit dependent. [They should probably be fixed! --GvR]
* Mark Hammond:Guido van Rossum2000-04-211-2/+0
| | | | | | | | | | | * Base address for all extension modules updated. PC\dllbase_nt.txt also updated. Erroneous "libpath" directory removed for all projects. * winsound module moved from a builtin module to an extension module. This was done primarily to avoid Python16.dll needing to pull in winmm.dll. Really dumb test added for winsound - but if nothing else it ensures the module imports.
* Remove _socket, select, soundex, and unicodedata. These have beenGuido van Rossum2000-04-061-10/+0
| | | | moved to their own DLLs, or are obsolete (soundex).
* VC++ project changes to add new Unicode files and modules.Guido van Rossum2000-03-111-0/+5
| | | | (I did this under VC++ 5.0 -- hope this doesn't break anything.)
* Added sha module!Guido van Rossum1999-04-131-0/+2
|
* Some weird symbol (M_I386) was used to decide whether to include theGuido van Rossum1999-02-051-1/+1
| | | | | audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.)
* Add winsound -- by Toby Dickenson with permission.Guido van Rossum1999-02-041-0/+2
|
* Added _localeGuido van Rossum1998-06-191-0/+2
|
* Delete references to initreop().Guido van Rossum1998-04-101-2/+0
|
* Added pypcre.c module.Guido van Rossum1997-11-251-0/+2
|
* Added reopGuido van Rossum1997-08-211-0/+2
|
* Got the new structure working with MSVC 4.2.Guido van Rossum1997-08-071-0/+6
| | | | | | main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols.
* Use spaces exclusively.Guido van Rossum1997-05-061-5/+5
|
* Added cStringIO and cPickle to the supported modules.Guido van Rossum1997-05-061-0/+4
|
* One more inittab.Guido van Rossum1997-04-291-1/+1
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-10/+17
|